I am using flixel v2.5 and am using FlxG.camera.follow to get the camera to follow the player. I have a background FlxSprite that I don't want to move with the camera. Is there a way I can set this FlxSprite to stay in the same place on the screen? I would also like to have a GUI HUD that stays fixed to the screen, and was thinking I could do this the same way.
\$\begingroup\$ \$\endgroup\$
Add a comment |
1 Answer
\$\begingroup\$ \$\endgroup\$
2 In previous versions, you could set the background/HUD's scrollfactor.x and scrollfactor.y to zero. Does that still work in 2.5?
- \$\begingroup\$ Yip, scrollfactor still works. I found that I had to set the scrollfactors on some objects in a nested group to get the effect that I needed. thanks. \$\endgroup\$Adam Harte– Adam Harte2011-04-25 01:34:15 +00:00Commented Apr 25, 2011 at 1:34
- 1\$\begingroup\$ When you add an object to a group, there should be an optional second parameter that makes its scrollfactor match the group's. \$\endgroup\$Gregory Avery-Weir– Gregory Avery-Weir2011-04-25 13:02:20 +00:00Commented Apr 25, 2011 at 13:02