Liberi
An exergame built for kids with CP!
Pusher.cs
1 using UnityEngine;
2 
6 [RequireComponent(typeof(Collider))]
7 [AddComponentMenu("Liberi/Pusher")]
8 public class Pusher : MonoBehaviour
9 {
13  public Vector3 PushDirection = Vector3.up;
17  public float PushAcceleration = 1f;
18 
19  void OnTriggerStay(Collider other)
20  {
21  if (!Sync.IsLocal(this))
22  return;
23 
24  if (other.rigidbody != null && !other.rigidbody.isKinematic)
25  other.rigidbody.velocity += PushDirection * PushAcceleration * Time.deltaTime;
26  }
27 }
Accelerates any local Rigidbodies in the bounds of the attached trigger.
Definition: Pusher.cs:8
static bool IsLocal(GameObject go)
Gets whether or not the given object is owned by the local peer.
Definition: Sync.Static.cs:290
float PushAcceleration
The rate at which rigidbodies accelerate in the push direction.
Definition: Pusher.cs:17
Vector3 PushDirection
The direction the push force is applied in.
Definition: Pusher.cs:13
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13