110 lines
4.9 KiB
C#
110 lines
4.9 KiB
C#
using System;
|
|
using Il2CppInterop.Common.Attributes;
|
|
using Il2CppInterop.Runtime;
|
|
using UnityEngine;
|
|
|
|
// Token: 0x02000396 RID: 918
|
|
public class CFX_AutoStopLoopedEffect : MonoBehaviour
|
|
{
|
|
// Token: 0x060077D8 RID: 30680 RVA: 0x001E7AC4 File Offset: 0x001E5CC4
|
|
[CallerCount(0)]
|
|
public unsafe void OnEnable()
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(CFX_AutoStopLoopedEffect.NativeMethodInfoPtr_OnEnable_Private_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x060077D9 RID: 30681 RVA: 0x001E7B08 File Offset: 0x001E5D08
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 616647, XrefRangeEnd = 616661, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe void Update()
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(CFX_AutoStopLoopedEffect.NativeMethodInfoPtr_Update_Private_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x060077DA RID: 30682 RVA: 0x001E7B4C File Offset: 0x001E5D4C
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 616661, XrefRangeEnd = 616662, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe CFX_AutoStopLoopedEffect()
|
|
: this(IL2CPP.il2cpp_object_new(Il2CppClassPointerStore<CFX_AutoStopLoopedEffect>.NativeClassPtr))
|
|
{
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(CFX_AutoStopLoopedEffect.NativeMethodInfoPtr__ctor_Public_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x060077DB RID: 30683 RVA: 0x001E7B98 File Offset: 0x001E5D98
|
|
// Note: this type is marked as 'beforefieldinit'.
|
|
static CFX_AutoStopLoopedEffect()
|
|
{
|
|
Il2CppClassPointerStore<CFX_AutoStopLoopedEffect>.NativeClassPtr = IL2CPP.GetIl2CppClass("Assembly-CSharp.dll", "", "CFX_AutoStopLoopedEffect");
|
|
IL2CPP.il2cpp_runtime_class_init(Il2CppClassPointerStore<CFX_AutoStopLoopedEffect>.NativeClassPtr);
|
|
CFX_AutoStopLoopedEffect.NativeFieldInfoPtr_effectDuration = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<CFX_AutoStopLoopedEffect>.NativeClassPtr, "effectDuration");
|
|
CFX_AutoStopLoopedEffect.NativeFieldInfoPtr_d = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<CFX_AutoStopLoopedEffect>.NativeClassPtr, "d");
|
|
CFX_AutoStopLoopedEffect.NativeMethodInfoPtr_OnEnable_Private_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<CFX_AutoStopLoopedEffect>.NativeClassPtr, 100672303);
|
|
CFX_AutoStopLoopedEffect.NativeMethodInfoPtr_Update_Private_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<CFX_AutoStopLoopedEffect>.NativeClassPtr, 100672304);
|
|
CFX_AutoStopLoopedEffect.NativeMethodInfoPtr__ctor_Public_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<CFX_AutoStopLoopedEffect>.NativeClassPtr, 100672305);
|
|
}
|
|
|
|
// Token: 0x060077DC RID: 30684 RVA: 0x0000351C File Offset: 0x0000171C
|
|
public CFX_AutoStopLoopedEffect(IntPtr pointer)
|
|
: base(pointer)
|
|
{
|
|
}
|
|
|
|
// Token: 0x17002920 RID: 10528
|
|
// (get) Token: 0x060077DD RID: 30685 RVA: 0x001E7C2C File Offset: 0x001E5E2C
|
|
// (set) Token: 0x060077DE RID: 30686 RVA: 0x001E7C54 File Offset: 0x001E5E54
|
|
public unsafe float effectDuration
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(CFX_AutoStopLoopedEffect.NativeFieldInfoPtr_effectDuration);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(CFX_AutoStopLoopedEffect.NativeFieldInfoPtr_effectDuration)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x17002921 RID: 10529
|
|
// (get) Token: 0x060077DF RID: 30687 RVA: 0x001E7C78 File Offset: 0x001E5E78
|
|
// (set) Token: 0x060077E0 RID: 30688 RVA: 0x001E7CA0 File Offset: 0x001E5EA0
|
|
public unsafe float d
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(CFX_AutoStopLoopedEffect.NativeFieldInfoPtr_d);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(CFX_AutoStopLoopedEffect.NativeFieldInfoPtr_d)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x04004FBD RID: 20413
|
|
private static readonly IntPtr NativeFieldInfoPtr_effectDuration;
|
|
|
|
// Token: 0x04004FBE RID: 20414
|
|
private static readonly IntPtr NativeFieldInfoPtr_d;
|
|
|
|
// Token: 0x04004FBF RID: 20415
|
|
private static readonly IntPtr NativeMethodInfoPtr_OnEnable_Private_Void_0;
|
|
|
|
// Token: 0x04004FC0 RID: 20416
|
|
private static readonly IntPtr NativeMethodInfoPtr_Update_Private_Void_0;
|
|
|
|
// Token: 0x04004FC1 RID: 20417
|
|
private static readonly IntPtr NativeMethodInfoPtr__ctor_Public_Void_0;
|
|
}
|