Rigidbody.worldCenterOfMass Manual     Reference     Scripting  
Scripting > Runtime Classes > Rigidbody
Rigidbody.worldCenterOfMass

var worldCenterOfMass : Vector3

Description

The center of mass of the rigidbody in world space (Read Only).

JavaScript
Debug.Log(rigidbody.worldCenterOfMass);

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Example() {
Debug.Log(rigidbody.worldCenterOfMass);
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Example():
Debug.Log(rigidbody.worldCenterOfMass)