• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Pawn] Texture Studio doors not opening
#1
When I rotate a door it rotates visually, but it's axis doesn't change and stays in the same position, so whenever I rotate a door it opens and closes in the same spots as before, has anyone ever encountered this?

EDIT: sorry, wrong thread
  Reply
#2
Use this function to rotate a object.
PHP Code:
stock RotateObject(objectidFloat:rotXFloat:rotYFloat:rotZFloat:Speed)
{
? ? new 
Float:XFloat:YFloat:ZFloat:SpeedConverted floatmul(Speed0.01);
? ? 
GetObjectPos(objectidXYZ);
? ? 
SetObjectPos(objectidXYfloatadd(Z0.01));
? ? 
MoveObject(objectidXYfloatsub(Z0.01), SpeedConvertedrotXrotYrotZ);
? ? return 
1;

  Reply


Forum Jump: