Playmaker Forum

PlayMaker Help & Tips => PlayMaker Help => Topic started by: Bailie on May 02, 2018, 08:20:12 PM

Title: New to playmaker, trying to make things spin
Post by: Bailie on May 02, 2018, 08:20:12 PM
This my code, and I just want to use it in VRC. I'm new to playmaker and I'm not figuring it out very well. All it does is spin things at a medium speed.

public class Rotator : MonoBehaviour {

   void Update () {
      transform.Rotate (new Vector3 (0, 30, 0) * Time.deltaTime);
   }
}
Title: Re: New to playmaker, trying to make things spin [solved]
Post by: Bailie on May 02, 2018, 08:36:44 PM
I got it. It doesnt explicitly do float++. So I had to do per second, float add, set rotation