Add v1.0.3.1
This commit is contained in:
183
Interop/Assembly-CSharp/LoadScript.cs
Normal file
183
Interop/Assembly-CSharp/LoadScript.cs
Normal file
@@ -0,0 +1,183 @@
|
||||
using System;
|
||||
using Il2CppInterop.Common.Attributes;
|
||||
using Il2CppInterop.Runtime;
|
||||
using Il2CppInterop.Runtime.InteropTypes.Arrays;
|
||||
using UnityEngine;
|
||||
|
||||
// Token: 0x020001B1 RID: 433
|
||||
public class LoadScript : SceneEvent
|
||||
{
|
||||
// Token: 0x06004934 RID: 18740 RVA: 0x001235DC File Offset: 0x001217DC
|
||||
[CallerCount(0)]
|
||||
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 544128, XrefRangeEnd = 544143, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
||||
public unsafe override void OpenEvent()
|
||||
{
|
||||
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
||||
IntPtr* ptr = null;
|
||||
IntPtr intPtr2;
|
||||
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(IL2CPP.il2cpp_object_get_virtual_method(IL2CPP.Il2CppObjectBaseToPtr(this), LoadScript.NativeMethodInfoPtr_OpenEvent_Public_Virtual_Void_0), IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
||||
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
||||
}
|
||||
|
||||
// Token: 0x06004935 RID: 18741 RVA: 0x0012362C File Offset: 0x0012182C
|
||||
[CallerCount(0)]
|
||||
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 544143, XrefRangeEnd = 544147, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
||||
public unsafe LoadScript()
|
||||
: this(IL2CPP.il2cpp_object_new(Il2CppClassPointerStore<LoadScript>.NativeClassPtr))
|
||||
{
|
||||
IntPtr* ptr = null;
|
||||
IntPtr intPtr2;
|
||||
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(LoadScript.NativeMethodInfoPtr__ctor_Public_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
||||
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
||||
}
|
||||
|
||||
// Token: 0x06004936 RID: 18742 RVA: 0x00123678 File Offset: 0x00121878
|
||||
// Note: this type is marked as 'beforefieldinit'.
|
||||
static LoadScript()
|
||||
{
|
||||
Il2CppClassPointerStore<LoadScript>.NativeClassPtr = IL2CPP.GetIl2CppClass("Assembly-CSharp.dll", "", "LoadScript");
|
||||
IL2CPP.il2cpp_runtime_class_init(Il2CppClassPointerStore<LoadScript>.NativeClassPtr);
|
||||
LoadScript.NativeFieldInfoPtr_ScriptName = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<LoadScript>.NativeClassPtr, "ScriptName");
|
||||
LoadScript.NativeFieldInfoPtr_ScriptLanugageFileName = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<LoadScript>.NativeClassPtr, "ScriptLanugageFileName");
|
||||
LoadScript.NativeFieldInfoPtr_Event = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<LoadScript>.NativeClassPtr, "Event");
|
||||
LoadScript.NativeFieldInfoPtr_Camera = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<LoadScript>.NativeClassPtr, "Camera");
|
||||
LoadScript.NativeFieldInfoPtr_PlayerPosition = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<LoadScript>.NativeClassPtr, "PlayerPosition");
|
||||
LoadScript.NativeFieldInfoPtr_bRepeat = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<LoadScript>.NativeClassPtr, "bRepeat");
|
||||
LoadScript.NativeMethodInfoPtr_OpenEvent_Public_Virtual_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<LoadScript>.NativeClassPtr, 100668140);
|
||||
LoadScript.NativeMethodInfoPtr__ctor_Public_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<LoadScript>.NativeClassPtr, 100668141);
|
||||
}
|
||||
|
||||
// Token: 0x06004937 RID: 18743 RVA: 0x00117370 File Offset: 0x00115570
|
||||
public LoadScript(IntPtr pointer)
|
||||
: base(pointer)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x17001A80 RID: 6784
|
||||
// (get) Token: 0x06004938 RID: 18744 RVA: 0x00123748 File Offset: 0x00121948
|
||||
// (set) Token: 0x06004939 RID: 18745 RVA: 0x00123771 File Offset: 0x00121971
|
||||
public unsafe string ScriptName
|
||||
{
|
||||
get
|
||||
{
|
||||
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(LoadScript.NativeFieldInfoPtr_ScriptName);
|
||||
return IL2CPP.Il2CppStringToManaged(*intPtr);
|
||||
}
|
||||
set
|
||||
{
|
||||
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
||||
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(LoadScript.NativeFieldInfoPtr_ScriptName), IL2CPP.ManagedStringToIl2Cpp(value));
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17001A81 RID: 6785
|
||||
// (get) Token: 0x0600493A RID: 18746 RVA: 0x00123798 File Offset: 0x00121998
|
||||
// (set) Token: 0x0600493B RID: 18747 RVA: 0x001237C1 File Offset: 0x001219C1
|
||||
public unsafe string ScriptLanugageFileName
|
||||
{
|
||||
get
|
||||
{
|
||||
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(LoadScript.NativeFieldInfoPtr_ScriptLanugageFileName);
|
||||
return IL2CPP.Il2CppStringToManaged(*intPtr);
|
||||
}
|
||||
set
|
||||
{
|
||||
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
||||
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(LoadScript.NativeFieldInfoPtr_ScriptLanugageFileName), IL2CPP.ManagedStringToIl2Cpp(value));
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17001A82 RID: 6786
|
||||
// (get) Token: 0x0600493C RID: 18748 RVA: 0x001237E8 File Offset: 0x001219E8
|
||||
// (set) Token: 0x0600493D RID: 18749 RVA: 0x0012381C File Offset: 0x00121A1C
|
||||
public unsafe Il2CppReferenceArray<SceneEvent> Event
|
||||
{
|
||||
get
|
||||
{
|
||||
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(LoadScript.NativeFieldInfoPtr_Event);
|
||||
IntPtr intPtr2 = *intPtr;
|
||||
return (intPtr2 != 0) ? new Il2CppReferenceArray<SceneEvent>(intPtr2) : null;
|
||||
}
|
||||
set
|
||||
{
|
||||
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
||||
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(LoadScript.NativeFieldInfoPtr_Event), IL2CPP.Il2CppObjectBaseToPtr(value));
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17001A83 RID: 6787
|
||||
// (get) Token: 0x0600493E RID: 18750 RVA: 0x00123844 File Offset: 0x00121A44
|
||||
// (set) Token: 0x0600493F RID: 18751 RVA: 0x00123878 File Offset: 0x00121A78
|
||||
public unsafe Il2CppReferenceArray<Transform> Camera
|
||||
{
|
||||
get
|
||||
{
|
||||
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(LoadScript.NativeFieldInfoPtr_Camera);
|
||||
IntPtr intPtr2 = *intPtr;
|
||||
return (intPtr2 != 0) ? new Il2CppReferenceArray<Transform>(intPtr2) : null;
|
||||
}
|
||||
set
|
||||
{
|
||||
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
||||
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(LoadScript.NativeFieldInfoPtr_Camera), IL2CPP.Il2CppObjectBaseToPtr(value));
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17001A84 RID: 6788
|
||||
// (get) Token: 0x06004940 RID: 18752 RVA: 0x001238A0 File Offset: 0x00121AA0
|
||||
// (set) Token: 0x06004941 RID: 18753 RVA: 0x001238D4 File Offset: 0x00121AD4
|
||||
public unsafe Il2CppReferenceArray<Transform> PlayerPosition
|
||||
{
|
||||
get
|
||||
{
|
||||
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(LoadScript.NativeFieldInfoPtr_PlayerPosition);
|
||||
IntPtr intPtr2 = *intPtr;
|
||||
return (intPtr2 != 0) ? new Il2CppReferenceArray<Transform>(intPtr2) : null;
|
||||
}
|
||||
set
|
||||
{
|
||||
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
||||
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(LoadScript.NativeFieldInfoPtr_PlayerPosition), IL2CPP.Il2CppObjectBaseToPtr(value));
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17001A85 RID: 6789
|
||||
// (get) Token: 0x06004942 RID: 18754 RVA: 0x001238FC File Offset: 0x00121AFC
|
||||
// (set) Token: 0x06004943 RID: 18755 RVA: 0x00123924 File Offset: 0x00121B24
|
||||
public unsafe bool bRepeat
|
||||
{
|
||||
get
|
||||
{
|
||||
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(LoadScript.NativeFieldInfoPtr_bRepeat);
|
||||
return *intPtr;
|
||||
}
|
||||
set
|
||||
{
|
||||
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(LoadScript.NativeFieldInfoPtr_bRepeat)) = value;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x04003060 RID: 12384
|
||||
private static readonly IntPtr NativeFieldInfoPtr_ScriptName;
|
||||
|
||||
// Token: 0x04003061 RID: 12385
|
||||
private static readonly IntPtr NativeFieldInfoPtr_ScriptLanugageFileName;
|
||||
|
||||
// Token: 0x04003062 RID: 12386
|
||||
private static readonly IntPtr NativeFieldInfoPtr_Event;
|
||||
|
||||
// Token: 0x04003063 RID: 12387
|
||||
private static readonly IntPtr NativeFieldInfoPtr_Camera;
|
||||
|
||||
// Token: 0x04003064 RID: 12388
|
||||
private static readonly IntPtr NativeFieldInfoPtr_PlayerPosition;
|
||||
|
||||
// Token: 0x04003065 RID: 12389
|
||||
private static readonly IntPtr NativeFieldInfoPtr_bRepeat;
|
||||
|
||||
// Token: 0x04003066 RID: 12390
|
||||
private static readonly IntPtr NativeMethodInfoPtr_OpenEvent_Public_Virtual_Void_0;
|
||||
|
||||
// Token: 0x04003067 RID: 12391
|
||||
private static readonly IntPtr NativeMethodInfoPtr__ctor_Public_Void_0;
|
||||
}
|
||||
Reference in New Issue
Block a user