Adds a force to the rigidbody relative to its coordinate system.
// Moves the rigidbody forward along its own z-axis function FixedUpdate () { rigidbody.AddRelativeForce (Vector3.forward * 10); }
using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void FixedUpdate() { rigidbody.AddRelativeForce(Vector3.forward * 10); } }
import UnityEngine import System.Collections public class Example(MonoBehaviour): def FixedUpdate() as void: rigidbody.AddRelativeForce((Vector3.forward * 10))
Adds a force to the rigidbody relative to its coordinate system.
// Moves the rigidbody forward along its own z-axis function FixedUpdate () { rigidbody.AddRelativeForce (0, 0, 10); }
using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void FixedUpdate() { rigidbody.AddRelativeForce(0, 0, 10); } }
import UnityEngine import System.Collections public class Example(MonoBehaviour): def FixedUpdate() as void: rigidbody.AddRelativeForce(0, 0, 10)