- Home /
Question by
ShinyTaco · Dec 21, 2012 at 09:47 PM ·
coordinatesflip
How to Flip X Coordinates?
How do you flip the x coordinates around in this code?
velocity.x += Physics.gravity.y * Time.deltaTime;
When my character jumps he flies back. I am trying to get him to fly forward. What am I missing here?
Thanks.
Comment
Best Answer
Answer by DaveA · Dec 21, 2012 at 09:48 PM
velocity.x -= Physics.gravity.y * Time.deltaTime;
Hi Dave, thanks for your reply.
I've tried the code and it doesn't work.
Any other ideas?
Thanks.
Your answer

Follow this Question
Related Questions
A node in a childnode? 1 Answer
Changing the coordinate system 0 Answers
How to import GPS location coordinates in to Unity ? 1 Answer
Box doesn't move to the position as I expect 1 Answer
Coordinate confusion 1 Answer