Move below actor
how would you get the on screen controls to go underneath the actor. Or follow?
Best Answers
-
EatingMyHat Posts: 1,246
sorry... what is 'the on screen'?
In general, the Z order of the actors on the screen is based on Layers, you cannot manipulate layers or Z order during the game. -
MotherHoose Posts: 2,456
@blorsch
to have actors always onScreen … such as controls; score; time; home/menuButtons
(elements that player is always able to use and things the player should always know)
… no matter where the camera location is in the scene
(a HUD layer … Heads-Up Display)
place those actors in X < 480 Y < 320 area of the scene
(the lower left section of scene)
in Inspector: Scene/Layer
drag those actors into a separate/new sceneLayer … uncheck that layer's Scrollable
that layer is usually dragged to the top of the Scene/Layer list
though you can use a background that always shows
in a layer at the bottom of the listMH
Answers
Thanks.