149 lines
4.6 KiB
C#
149 lines
4.6 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Runtime.CompilerServices;
|
|
using UnityEngine.Internal;
|
|
using UnityEngine.Scripting;
|
|
|
|
namespace UnityEngine
|
|
{
|
|
// Token: 0x02000090 RID: 144
|
|
[RequiredByNativeCode]
|
|
public class MonoBehaviour : Behaviour
|
|
{
|
|
// Token: 0x06000AD8 RID: 2776
|
|
[ThreadAndSerializationSafe]
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
public extern MonoBehaviour();
|
|
|
|
// Token: 0x06000AD9 RID: 2777
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
private extern void Internal_CancelInvokeAll();
|
|
|
|
// Token: 0x06000ADA RID: 2778
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
private extern bool Internal_IsInvokingAll();
|
|
|
|
// Token: 0x06000ADB RID: 2779
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
public extern void Invoke(string methodName, float time);
|
|
|
|
// Token: 0x06000ADC RID: 2780
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
public extern void InvokeRepeating(string methodName, float time, float repeatRate);
|
|
|
|
// Token: 0x06000ADD RID: 2781 RVA: 0x000103D8 File Offset: 0x0000E5D8
|
|
public void CancelInvoke()
|
|
{
|
|
this.Internal_CancelInvokeAll();
|
|
}
|
|
|
|
// Token: 0x06000ADE RID: 2782
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
public extern void CancelInvoke(string methodName);
|
|
|
|
// Token: 0x06000ADF RID: 2783
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
public extern bool IsInvoking(string methodName);
|
|
|
|
// Token: 0x06000AE0 RID: 2784 RVA: 0x000103E4 File Offset: 0x0000E5E4
|
|
public bool IsInvoking()
|
|
{
|
|
return this.Internal_IsInvokingAll();
|
|
}
|
|
|
|
// Token: 0x06000AE1 RID: 2785 RVA: 0x00010400 File Offset: 0x0000E600
|
|
public Coroutine StartCoroutine(IEnumerator routine)
|
|
{
|
|
return this.StartCoroutine_Auto_Internal(routine);
|
|
}
|
|
|
|
// Token: 0x06000AE2 RID: 2786 RVA: 0x0001041C File Offset: 0x0000E61C
|
|
[Obsolete("StartCoroutine_Auto has been deprecated. Use StartCoroutine instead (UnityUpgradable) -> StartCoroutine([mscorlib] System.Collections.IEnumerator)", false)]
|
|
public Coroutine StartCoroutine_Auto(IEnumerator routine)
|
|
{
|
|
return this.StartCoroutine(routine);
|
|
}
|
|
|
|
// Token: 0x06000AE3 RID: 2787
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
private extern Coroutine StartCoroutine_Auto_Internal(IEnumerator routine);
|
|
|
|
// Token: 0x06000AE4 RID: 2788
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
public extern Coroutine StartCoroutine(string methodName, [DefaultValue("null")] object value);
|
|
|
|
// Token: 0x06000AE5 RID: 2789 RVA: 0x00010438 File Offset: 0x0000E638
|
|
[ExcludeFromDocs]
|
|
public Coroutine StartCoroutine(string methodName)
|
|
{
|
|
object obj = null;
|
|
return this.StartCoroutine(methodName, obj);
|
|
}
|
|
|
|
// Token: 0x06000AE6 RID: 2790
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
public extern void StopCoroutine(string methodName);
|
|
|
|
// Token: 0x06000AE7 RID: 2791 RVA: 0x00010458 File Offset: 0x0000E658
|
|
public void StopCoroutine(IEnumerator routine)
|
|
{
|
|
this.StopCoroutineViaEnumerator_Auto(routine);
|
|
}
|
|
|
|
// Token: 0x06000AE8 RID: 2792 RVA: 0x00010464 File Offset: 0x0000E664
|
|
public void StopCoroutine(Coroutine routine)
|
|
{
|
|
this.StopCoroutine_Auto(routine);
|
|
}
|
|
|
|
// Token: 0x06000AE9 RID: 2793
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
internal extern void StopCoroutineViaEnumerator_Auto(IEnumerator routine);
|
|
|
|
// Token: 0x06000AEA RID: 2794
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
internal extern void StopCoroutine_Auto(Coroutine routine);
|
|
|
|
// Token: 0x06000AEB RID: 2795
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
public extern void StopAllCoroutines();
|
|
|
|
// Token: 0x06000AEC RID: 2796 RVA: 0x00010470 File Offset: 0x0000E670
|
|
public static void print(object message)
|
|
{
|
|
Debug.Log(message);
|
|
}
|
|
|
|
// Token: 0x1700026E RID: 622
|
|
// (get) Token: 0x06000AED RID: 2797
|
|
// (set) Token: 0x06000AEE RID: 2798
|
|
public extern bool useGUILayout
|
|
{
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
get;
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
set;
|
|
}
|
|
|
|
// Token: 0x06000AEF RID: 2799
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
internal extern string GetScriptClassName();
|
|
}
|
|
}
|