Search Results for

    Show / Hide Table of Contents

    Interface IMonoBehaviour

    Namespace: RTSEngine
    Assembly: cs.temp.dll.dll
    Syntax
    public interface IMonoBehaviour

    Properties

    enabled

    Declaration
    bool enabled { get; set; }
    Property Value
    Type Description
    Boolean

    gameObject

    Declaration
    GameObject gameObject { get; }
    Property Value
    Type Description
    GameObject

    transform

    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
    T GetComponent<T>()
    Returns
    Type Description
    T
    Type Parameters
    Name Description
    T

    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 Description
    T
    Type Parameters
    Name Description
    T

    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
    In This Article
    Back to top Unity RTS Engine Documentation