Dynamic gravity vector

Started by
3 comments, last by jbosch 12 years, 11 months ago
Hi,


I have a physics engine in my game. I have to set him the gravity vector to initialize it. That would normally be x,y(0,10). Ok, easy one. But what happens if the container is a mobile, and I want to modify the gravity vector according to the accelerometer information? This is, if I give the mobile phone a 90º inclination, the "ground" is now different than in its initiajl state, I want to reflect this, but at any angle, not just 90º movements.


This can be difficult to explain, so I have attached a picture

[attachment=2380:mobile.png]



Any idea?
Advertisement
Does your physics engine provide a function for setting a new gravity vector? Is the question how to change the gravity vector, or how to figure out what the new vector is?
Take your default gravity vector and rotate it by the desired angle.
thanks Hodgman,


The question is more about how to calculate this angle.

The accelerometer gives me some information. For example, when the phone is landscape, the acceleration (x,y) its (1,0), and when I put the phone in portrait position, its (0,1).



Any idea?

Thanks!
So the accelerometer always gives you a normalized vector to the "down"-direction? Then just multiply that vector with the magnitude of your g.

So the accelerometer always gives you a normalized vector to the "down"-direction? Then just multiply that vector with the magnitude of your g.



whaaw, you are right. Very simple! I feel dumb now jajaja

This topic is closed to new replies.

Advertisement