@ Philip: I think he only wants to exclude the object (plattform) from the gravity and not disable the whole gravity in the scene!
This is what is written in the help-file for this command:
Quote: "
PHY SET GRAVITY
Set global gravity vector.
Syntax
phy set gravity x#, y#, z#
Parameters
x# acceleration of gravity on the x axis
y# acceleration of gravity on the y axis
z# acceleration of gravity on the z axis
Returns
This command does not return a value.
Description
When using this command you can set the global gravity acceleration vector. By default this is set to 0.0, -9.8, 0.0 .
"
@ Simwad: I would say that disabling the gravity might solve the problem, but as soon as your "caracter/player" jumps on it (influenced by a seperate "hand-made" gravity) the plattform will move into the same direction as your player is falling (to say it simple: it will fall with your player untill it hits an other object) and this is surely not what you want, right?
You might can use some joints to prevent the platform from falling, but still have it react to changes of the weight that is resting on it (player) and movements. You maybe need to hide this "joint-help-objects" from the scene/eye of the player. The plattform would be connected with some other surrounding static objects which are "holding" to plattform at its location. A spring-like joint is maybe the one that might be usefull for your plattform-thing (no idea, if this is the right sort of joint, but you should have a look at the different sorts of joints to find the one usefull for your problem):
Quote: "
PHY SET DISTANCE JOINT SPRING
Set spring properties for the distance joint which will have the effect of making the joint springy.
Syntax
phy set distance joint spring ID, target#, spring#, damper#
Parameters
ID identification number of the joint
target# target value ( angle / position ) of spring where the spring force force is zero
spring# spring coefficient
damper# damper coefficient
Returns
This command does not return a value.
"
I never used joints so far, so I can't tell you anything more usefull! It was just an idea!
I hope it was at least a bit usefull.
Hoozer