6 [RequireComponent(typeof(Collider))]
7 [AddComponentMenu(
"Liberi/Pusher")]
8 public class Pusher : MonoBehaviour
19 void OnTriggerStay(Collider other)
24 if (other.rigidbody != null && !other.rigidbody.isKinematic)
25 other.rigidbody.velocity += PushDirection * PushAcceleration * Time.deltaTime;
Accelerates any local Rigidbodies in the bounds of the attached trigger.
static bool IsLocal(GameObject go)
Gets whether or not the given object is owned by the local peer.
float PushAcceleration
The rate at which rigidbodies accelerate in the push direction.
Vector3 PushDirection
The direction the push force is applied in.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...