I want to make a platform that exist of several prims.
On the platform are people standing/walking/dancing.
When i touch it the platform get Physical and i want to move it 50m up.
The problem is that the platform drift while moving up
(is it possible to move a physical platform to move up without drifting?
The code i used to move the platform up is:
llSetStatus(STATUS_PHYSICS, TRUE);
llSetStatus (STATUS_ROTATE_X|STATUS_ROTATE_Y|STATUS_ROTATE_Z, FALSE);
llMoveToTarget(llGetPos() + <0.0, 0.0, 50>, 60);
llStopMoveToTarget();
llSetStatus(STATUS_PHYSICS, TRUE);
;