Interface IMonoBehaviour
Assembly: cs.temp.dll.dll
Syntax
public interface IMonoBehaviour
Properties
enabled
Declaration
bool enabled { get; set; }
Property Value
gameObject
Declaration
GameObject gameObject { get; }
Property Value
Type |
Description |
GameObject |
|
Declaration
Transform transform { get; }
Property Value
Type |
Description |
Transform |
|
Methods
GetComponent(Type)
Declaration
Component GetComponent(Type type)
Parameters
Type |
Name |
Description |
System.Type |
type |
|
Returns
Type |
Description |
Component |
|
GetComponent<T>()
Declaration
Returns
Type Parameters
GetComponentInChildren(Type)
Declaration
Component GetComponentInChildren(Type type)
Parameters
Type |
Name |
Description |
System.Type |
type |
|
Returns
Type |
Description |
Component |
|
GetComponentInChildren<T>()
Declaration
T GetComponentInChildren<T>()
Returns
Type Parameters
StartCoroutine(IEnumerator)
Declaration
Coroutine StartCoroutine(IEnumerator routine)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IEnumerator |
routine |
|
Returns
Type |
Description |
Coroutine |
|
StopCoroutine(Coroutine)
Declaration
void StopCoroutine(Coroutine routine)
Parameters
Type |
Name |
Description |
Coroutine |
routine |
|
StopCoroutine(IEnumerator)
Declaration
void StopCoroutine(IEnumerator routine)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IEnumerator |
routine |
|