Legacy Documentation: Version 2017.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Transform.root

Switch to Manual
public var root: Transform;

Description

Returns the topmost transform in the hierarchy.

(This never returns null, if this Transform doesn't have a parent it returns itself.)

// Is a collision between two objects in different hierarchies?
function OnCollisionEnter(collision : Collision) {
    if ( collision.transform.root != transform.root ) {
        print("The colliding objects are not in the same hierarchy");
    }
}

Did you find this page useful? Please give it a rating: