78 lines
3.7 KiB
C#
78 lines
3.7 KiB
C#
using System;
|
|
using Il2CppInterop.Common.Attributes;
|
|
using Il2CppInterop.Runtime;
|
|
using Il2CppInterop.Runtime.InteropTypes.Arrays;
|
|
using UnityEngine;
|
|
|
|
// Token: 0x020001E1 RID: 481
|
|
public class StopSceneParticleSystem : SceneEvent
|
|
{
|
|
// Token: 0x06004BE3 RID: 19427 RVA: 0x0012D920 File Offset: 0x0012BB20
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 563282, XrefRangeEnd = 563295, 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), StopSceneParticleSystem.NativeMethodInfoPtr_OpenEvent_Public_Virtual_Void_0), IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x06004BE4 RID: 19428 RVA: 0x0012D970 File Offset: 0x0012BB70
|
|
[CallerCount(5)]
|
|
[CachedScanResults(RefRangeStart = 559105, RefRangeEnd = 559110, XrefRangeStart = 559105, XrefRangeEnd = 559110, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe StopSceneParticleSystem()
|
|
: this(IL2CPP.il2cpp_object_new(Il2CppClassPointerStore<StopSceneParticleSystem>.NativeClassPtr))
|
|
{
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(StopSceneParticleSystem.NativeMethodInfoPtr__ctor_Public_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x06004BE5 RID: 19429 RVA: 0x0012D9BC File Offset: 0x0012BBBC
|
|
// Note: this type is marked as 'beforefieldinit'.
|
|
static StopSceneParticleSystem()
|
|
{
|
|
Il2CppClassPointerStore<StopSceneParticleSystem>.NativeClassPtr = IL2CPP.GetIl2CppClass("Assembly-CSharp.dll", "", "StopSceneParticleSystem");
|
|
IL2CPP.il2cpp_runtime_class_init(Il2CppClassPointerStore<StopSceneParticleSystem>.NativeClassPtr);
|
|
StopSceneParticleSystem.NativeFieldInfoPtr_ScenePS = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<StopSceneParticleSystem>.NativeClassPtr, "ScenePS");
|
|
StopSceneParticleSystem.NativeMethodInfoPtr_OpenEvent_Public_Virtual_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<StopSceneParticleSystem>.NativeClassPtr, 100668306);
|
|
StopSceneParticleSystem.NativeMethodInfoPtr__ctor_Public_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<StopSceneParticleSystem>.NativeClassPtr, 100668307);
|
|
}
|
|
|
|
// Token: 0x06004BE6 RID: 19430 RVA: 0x00118C18 File Offset: 0x00116E18
|
|
public StopSceneParticleSystem(IntPtr pointer)
|
|
: base(pointer)
|
|
{
|
|
}
|
|
|
|
// Token: 0x17001B52 RID: 6994
|
|
// (get) Token: 0x06004BE7 RID: 19431 RVA: 0x0012DA28 File Offset: 0x0012BC28
|
|
// (set) Token: 0x06004BE8 RID: 19432 RVA: 0x0012DA5C File Offset: 0x0012BC5C
|
|
public unsafe Il2CppReferenceArray<ParticleSystem> ScenePS
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(StopSceneParticleSystem.NativeFieldInfoPtr_ScenePS);
|
|
IntPtr intPtr2 = *intPtr;
|
|
return (intPtr2 != 0) ? new Il2CppReferenceArray<ParticleSystem>(intPtr2) : null;
|
|
}
|
|
set
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(StopSceneParticleSystem.NativeFieldInfoPtr_ScenePS), IL2CPP.Il2CppObjectBaseToPtr(value));
|
|
}
|
|
}
|
|
|
|
// Token: 0x04003214 RID: 12820
|
|
private static readonly IntPtr NativeFieldInfoPtr_ScenePS;
|
|
|
|
// Token: 0x04003215 RID: 12821
|
|
private static readonly IntPtr NativeMethodInfoPtr_OpenEvent_Public_Virtual_Void_0;
|
|
|
|
// Token: 0x04003216 RID: 12822
|
|
private static readonly IntPtr NativeMethodInfoPtr__ctor_Public_Void_0;
|
|
}
|