Need some advice on best method for character movement
joebear218
Member Posts: 33
Hi all,
So I'm working on a platformer and I'm wonder what people think is the best controls for movement when the game goes to iPhone. Obviously keyboard works great for development and I've created a d-pad to use on shooter game but the controlls aren't great, movement is still difficult transitioning from up/down and left/right. Any suggestions on something to use?
Thanks.
Joe
So I'm working on a platformer and I'm wonder what people think is the best controls for movement when the game goes to iPhone. Obviously keyboard works great for development and I've created a d-pad to use on shooter game but the controlls aren't great, movement is still difficult transitioning from up/down and left/right. Any suggestions on something to use?
Thanks.
Joe
Comments
Create an actor to act as a button. Create a rule that says when touch is pressed
change attribute game.calibratedX to accelerometer.X and
change attribute game.calibratedY to acceleromter.Y
Then in your movement rules just use the two game attributes instead of the
devices->accelerometer attributes