Liberi
An exergame built for kids with CP!
Spinner.cs
1 using UnityEngine;
2 
6 [AddComponentMenu("Liberi/Spinner")]
7 public class Spinner: MonoBehaviour
8 {
12  public float Speed;
16  public bool IsEffect;
20  public Vector3 Axis = Vector3.forward;
21 
22  Sync _sync;
23 
24  void Start ()
25  {
26  _sync = GetComponent<Sync>();
27  }
28 
29  void Update ()
30  {
31  if (IsEffect || _sync.OwnerPeerIndex == Sync.LocalPeerIndex)
32  {
33  transform.Rotate(Axis * Time.deltaTime * Speed * Mathf.Sign(transform.localScale.x));
34  }
35  }
36 }
Vector3 Axis
The axis around which to spin.
Definition: Spinner.cs:20
float Speed
The speed at which to spin.
Definition: Spinner.cs:12
Spins this object.
Definition: Spinner.cs:7
static int LocalPeerIndex
Gets the peer index of this peer.
Definition: Sync.Static.cs:37
bool IsEffect
Whether the spin is a canonical state change or simply a client-side visual effect.
Definition: Spinner.cs:16
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13