Any clue how to do this?
Hello guys, how are you?
Does someone have any clue on how to do a game like this
http://www.juegator.com/juegos/Zeitenwende
Where you need to balance, while stuff is falling and unbalancing you?
Any Template available?
Cheers.
Does someone have any clue on how to do a game like this
http://www.juegator.com/juegos/Zeitenwende
Where you need to balance, while stuff is falling and unbalancing you?
Any Template available?
Cheers.
Comments
Make an actor (width = 100, height = 250) and place it exactly in the center of the scene.
Give the actor a constrain behavior--
Constrain Attribute: self.motion.Angular Velocity To: self.Motion.Angular Velocity + ((game.Display Size.Width / 2) - game.Mouse.Position.X) * .001
Then give the actor a timer behavior--
Every 2 seconds:
----Change Attribute: self.motion.Angular Velocity To: random(0,50) - 25
Then play it and try to keep the actor balanced by moving the mouse left and right.