Advertisement
maujogador

MonoBehaviour

May 30th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.01 KB | None | 0 0
  1. public class MonoBehaviour : Behaviour
  2.  {
  3.      public extern bool useGUILayout
  4.      {
  5.          get;
  6.          set;
  7.      }
  8.      public extern MonoBehaviour();
  9.      private extern void Internal_CancelInvokeAll();
  10.      private extern bool Internal_IsInvokingAll();
  11.      public extern void Invoke(string methodName, float time);
  12.      public extern void InvokeRepeating(string methodName, float time, float repeatRate);
  13.      public void CancelInvoke();
  14.      public extern void CancelInvoke(string methodName);
  15.      public extern bool IsInvoking(string methodName);
  16.      public bool IsInvoking();
  17.      public Coroutine StartCoroutine(IEnumerator routine);
  18.      public extern Coroutine StartCoroutine_Auto(IEnumerator routine);
  19.      public extern Coroutine StartCoroutine(string methodName, object value);
  20.      public Coroutine StartCoroutine(string methodName);
  21.      public extern void StopCoroutine(string methodName);
  22.      public extern void StopAllCoroutines();
  23.      public static void print(object message);
  24.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement