Start a new topic
Answered

I want to get the orientation of the object every frame.

I want to get the rotation of a rotating object with Get Rotation and synchronize it with another object with Set Rotation, but it doesn't work. I put Wait in to try and get it to work, but is there any way to get it every frame without wait? 


Best Answer

If the same State is executed without wait after Finish, an infinite loop will occur. To be more specific, it loops 1000 times in one frame. After 1000 loops, PlayMaker will stop the infinite loop. As a result, the FSM will be disabled and will stop. If you have checked the Every Frame checkbox for each action, it will execute every frame without wait.

1 Comment

Answer

If the same State is executed without wait after Finish, an infinite loop will occur. To be more specific, it loops 1000 times in one frame. After 1000 loops, PlayMaker will stop the infinite loop. As a result, the FSM will be disabled and will stop. If you have checked the Every Frame checkbox for each action, it will execute every frame without wait.

Login or Signup to post a comment