how do i activate button images to make my character move
THINGTHING
Member Posts: 84
how do i activate button images to make my character move
Comments
Create a global attribute called Up.Pressed = 0
Inside that button (actor), you create a Rule to say when its touched,
Change attribute Up.Pressed = 1
When Touch is released,
Change attribute Up.Pressed = 0
In your character, you create a Rule to say, if Game.Up.Pressed = 1,
Then drag a MOVE/MOVE To or Accelerate/Accelerate To behavior and put in the values.