Hi, all my question is in the tittle. Thanks if you can suggest something to me.
What do you mean by “Space effect”?
No gravity like in the iss station
Perhaps the easiest thing would be to do:
physics.setGravity( 0, 0 )
That turns off gravity for the whole world.
Rob
yes, this is i was tried but this is not the effect that i search.
the objects are more floats , as if it was in water
If they are just in water (ie: not floating on top of water) then simply use Robs suggestion with a little more gravity setGravity(0, 0.4) etc. and adjust your density on the objects until you get the right amount of fluid floating you are looking for.
It is something you just have to play around with but sounds like you need a mix of light gravity and the right amount of density on your physics bodies.
Hi @espace3d,
Is this going to be a top-down view? In that case, you probably don’t want any gravity, but perhaps a slight “drag” on the objects. That can be achieved by setting the linear damping on objects (they will move in whatever direction but gradually come to a stop, as if they’re moving about in a liquid).
Brent
What do you mean by “Space effect”?
No gravity like in the iss station
Perhaps the easiest thing would be to do:
physics.setGravity( 0, 0 )
That turns off gravity for the whole world.
Rob
yes, this is i was tried but this is not the effect that i search.
the objects are more floats , as if it was in water
If they are just in water (ie: not floating on top of water) then simply use Robs suggestion with a little more gravity setGravity(0, 0.4) etc. and adjust your density on the objects until you get the right amount of fluid floating you are looking for.
It is something you just have to play around with but sounds like you need a mix of light gravity and the right amount of density on your physics bodies.
Hi @espace3d,
Is this going to be a top-down view? In that case, you probably don’t want any gravity, but perhaps a slight “drag” on the objects. That can be achieved by setting the linear damping on objects (they will move in whatever direction but gradually come to a stop, as if they’re moving about in a liquid).
Brent