C# Class UEx.TransformX

Transform extensions
Datei anzeigen Open project: jbruening/unity3d-extensions

Public Methods

Method Description
DeepSearch ( this t, string name ) : Transform

Deep search the heirarchy of the specified transform for the name. Uses width-first search.

backward ( this t ) : Vector3

opposite of forward

down ( this t ) : Vector3

opposite of up

left ( this t ) : Vector3

opposite of right

Method Details

DeepSearch() public static method

Deep search the heirarchy of the specified transform for the name. Uses width-first search.
public static DeepSearch ( this t, string name ) : Transform
t this
name string
return UnityEngine.Transform

backward() public static method

opposite of forward
public static backward ( this t ) : Vector3
t this
return UnityEngine.Vector3

down() public static method

opposite of up
public static down ( this t ) : Vector3
t this
return UnityEngine.Vector3

left() public static method

opposite of right
public static left ( this t ) : Vector3
t this
return UnityEngine.Vector3