Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseThe position of the rigidbody.
This is similar to setting transform.position, however the position will only be applied to the transform at the end of the physics step. If you want to continously move a rigidbody or kinematic rigidbody use MovePosition and MoveRotation instead.
function Start () { rigidbody.position = Vector3.zero; }
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Start() { rigidbody.position = Vector3.zero; } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Start() as void: rigidbody.position = Vector3.zero