426 lines
22 KiB
C#
426 lines
22 KiB
C#
using System;
|
|
using Il2CppInterop.Common.Attributes;
|
|
using Il2CppInterop.Runtime;
|
|
using Il2CppInterop.Runtime.InteropTypes.Arrays;
|
|
using Il2CppSystem;
|
|
using Il2CppSystem.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace AmplifyColor
|
|
{
|
|
// Token: 0x02000646 RID: 1606
|
|
[Serializable]
|
|
public class VolumeEffect : Il2CppSystem.Object
|
|
{
|
|
// Token: 0x0600A2DB RID: 41691 RVA: 0x0029D74C File Offset: 0x0029B94C
|
|
[CallerCount(4)]
|
|
[CachedScanResults(RefRangeStart = 644432, RefRangeEnd = 644436, XrefRangeStart = 644423, XrefRangeEnd = 644432, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe VolumeEffect(AmplifyColorBase effect)
|
|
: this(IL2CPP.il2cpp_object_new(Il2CppClassPointerStore<VolumeEffect>.NativeClassPtr))
|
|
{
|
|
checked
|
|
{
|
|
IntPtr* ptr = stackalloc IntPtr[unchecked((UIntPtr)1) * (UIntPtr)sizeof(IntPtr)];
|
|
*ptr = IL2CPP.Il2CppObjectBaseToPtr(effect);
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(VolumeEffect.NativeMethodInfoPtr__ctor_Public_Void_AmplifyColorBase_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
}
|
|
|
|
// Token: 0x0600A2DC RID: 41692 RVA: 0x0029D7B0 File Offset: 0x0029B9B0
|
|
[CallerCount(2)]
|
|
[CachedScanResults(RefRangeStart = 644512, RefRangeEnd = 644514, XrefRangeStart = 644436, XrefRangeEnd = 644512, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe static VolumeEffect BlendValuesToVolumeEffect(VolumeEffectFlags flags, VolumeEffect volume1, VolumeEffect volume2, float blend)
|
|
{
|
|
IntPtr* ptr;
|
|
checked
|
|
{
|
|
ptr = stackalloc IntPtr[unchecked((UIntPtr)4) * (UIntPtr)sizeof(IntPtr)];
|
|
*ptr = IL2CPP.Il2CppObjectBaseToPtr(flags);
|
|
}
|
|
ptr[checked(unchecked((UIntPtr)1) * (UIntPtr)sizeof(IntPtr)) / (UIntPtr)sizeof(IntPtr)] = IL2CPP.Il2CppObjectBaseToPtr(volume1);
|
|
ptr[checked(unchecked((UIntPtr)2) * (UIntPtr)sizeof(IntPtr)) / (UIntPtr)sizeof(IntPtr)] = IL2CPP.Il2CppObjectBaseToPtr(volume2);
|
|
ptr[checked(unchecked((UIntPtr)3) * (UIntPtr)sizeof(IntPtr)) / (UIntPtr)sizeof(IntPtr)] = ref blend;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(VolumeEffect.NativeMethodInfoPtr_BlendValuesToVolumeEffect_Public_Static_VolumeEffect_VolumeEffectFlags_VolumeEffect_VolumeEffect_Single_0, 0, (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
IntPtr intPtr3 = intPtr;
|
|
return (intPtr3 != 0) ? new VolumeEffect(intPtr3) : null;
|
|
}
|
|
|
|
// Token: 0x0600A2DD RID: 41693 RVA: 0x0029D854 File Offset: 0x0029BA54
|
|
[CallerCount(2)]
|
|
[CachedScanResults(RefRangeStart = 644525, RefRangeEnd = 644527, XrefRangeStart = 644514, XrefRangeEnd = 644525, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe VolumeEffectComponent AddComponent(Component c, VolumeEffectComponentFlags compFlags)
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr;
|
|
checked
|
|
{
|
|
ptr = stackalloc IntPtr[unchecked((UIntPtr)2) * (UIntPtr)sizeof(IntPtr)];
|
|
*ptr = IL2CPP.Il2CppObjectBaseToPtr(c);
|
|
}
|
|
ptr[checked(unchecked((UIntPtr)1) * (UIntPtr)sizeof(IntPtr)) / (UIntPtr)sizeof(IntPtr)] = IL2CPP.Il2CppObjectBaseToPtr(compFlags);
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(VolumeEffect.NativeMethodInfoPtr_AddComponent_Public_VolumeEffectComponent_Component_VolumeEffectComponentFlags_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
IntPtr intPtr3 = intPtr;
|
|
return (intPtr3 != 0) ? new VolumeEffectComponent(intPtr3) : null;
|
|
}
|
|
|
|
// Token: 0x0600A2DE RID: 41694 RVA: 0x0029D8DC File Offset: 0x0029BADC
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 644527, XrefRangeEnd = 644531, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe void RemoveEffectComponent(VolumeEffectComponent comp)
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
checked
|
|
{
|
|
IntPtr* ptr = stackalloc IntPtr[unchecked((UIntPtr)1) * (UIntPtr)sizeof(IntPtr)];
|
|
*ptr = IL2CPP.Il2CppObjectBaseToPtr(comp);
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(VolumeEffect.NativeMethodInfoPtr_RemoveEffectComponent_Public_Void_VolumeEffectComponent_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
}
|
|
|
|
// Token: 0x0600A2DF RID: 41695 RVA: 0x0029D938 File Offset: 0x0029BB38
|
|
[CallerCount(2)]
|
|
[CachedScanResults(RefRangeStart = 644554, RefRangeEnd = 644556, XrefRangeStart = 644531, XrefRangeEnd = 644554, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe void UpdateVolume()
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(VolumeEffect.NativeMethodInfoPtr_UpdateVolume_Public_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x0600A2E0 RID: 41696 RVA: 0x0029D97C File Offset: 0x0029BB7C
|
|
[CallerCount(1)]
|
|
[CachedScanResults(RefRangeStart = 644628, RefRangeEnd = 644629, XrefRangeStart = 644556, XrefRangeEnd = 644628, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe void SetValues(AmplifyColorBase targetColor)
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
checked
|
|
{
|
|
IntPtr* ptr = stackalloc IntPtr[unchecked((UIntPtr)1) * (UIntPtr)sizeof(IntPtr)];
|
|
*ptr = IL2CPP.Il2CppObjectBaseToPtr(targetColor);
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(VolumeEffect.NativeMethodInfoPtr_SetValues_Public_Void_AmplifyColorBase_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
}
|
|
|
|
// Token: 0x0600A2E1 RID: 41697 RVA: 0x0029D9D8 File Offset: 0x0029BBD8
|
|
[CallerCount(1)]
|
|
[CachedScanResults(RefRangeStart = 644693, RefRangeEnd = 644694, XrefRangeStart = 644629, XrefRangeEnd = 644693, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe void BlendValues(AmplifyColorBase targetColor, VolumeEffect other, float blendAmount)
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr;
|
|
checked
|
|
{
|
|
ptr = stackalloc IntPtr[unchecked((UIntPtr)3) * (UIntPtr)sizeof(IntPtr)];
|
|
*ptr = IL2CPP.Il2CppObjectBaseToPtr(targetColor);
|
|
}
|
|
ptr[checked(unchecked((UIntPtr)1) * (UIntPtr)sizeof(IntPtr)) / (UIntPtr)sizeof(IntPtr)] = IL2CPP.Il2CppObjectBaseToPtr(other);
|
|
ptr[checked(unchecked((UIntPtr)2) * (UIntPtr)sizeof(IntPtr)) / (UIntPtr)sizeof(IntPtr)] = ref blendAmount;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(VolumeEffect.NativeMethodInfoPtr_BlendValues_Public_Void_AmplifyColorBase_VolumeEffect_Single_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x0600A2E2 RID: 41698 RVA: 0x0029DA5C File Offset: 0x0029BC5C
|
|
[CallerCount(6)]
|
|
[CachedScanResults(RefRangeStart = 644701, RefRangeEnd = 644707, XrefRangeStart = 644694, XrefRangeEnd = 644701, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe VolumeEffectComponent FindEffectComponent(string compName)
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
checked
|
|
{
|
|
IntPtr* ptr = stackalloc IntPtr[unchecked((UIntPtr)1) * (UIntPtr)sizeof(IntPtr)];
|
|
*ptr = IL2CPP.ManagedStringToIl2Cpp(compName);
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(VolumeEffect.NativeMethodInfoPtr_FindEffectComponent_Public_VolumeEffectComponent_String_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
IntPtr intPtr3 = intPtr;
|
|
return (intPtr3 != 0) ? new VolumeEffectComponent(intPtr3) : null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x0600A2E3 RID: 41699 RVA: 0x0029DACC File Offset: 0x0029BCCC
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 644707, XrefRangeEnd = 644744, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe static Il2CppReferenceArray<Component> ListAcceptableComponents(AmplifyColorBase go)
|
|
{
|
|
checked
|
|
{
|
|
IntPtr* ptr = stackalloc IntPtr[unchecked((UIntPtr)1) * (UIntPtr)sizeof(IntPtr)];
|
|
*ptr = IL2CPP.Il2CppObjectBaseToPtr(go);
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(VolumeEffect.NativeMethodInfoPtr_ListAcceptableComponents_Public_Static_Il2CppReferenceArray_1_Component_AmplifyColorBase_0, 0, (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
IntPtr intPtr3 = intPtr;
|
|
return (intPtr3 != 0) ? new Il2CppReferenceArray<Component>(intPtr3) : null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x0600A2E4 RID: 41700 RVA: 0x0029DB2C File Offset: 0x0029BD2C
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 644744, XrefRangeEnd = 644766, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe Il2CppStringArray GetComponentNames()
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(VolumeEffect.NativeMethodInfoPtr_GetComponentNames_Public_Il2CppStringArray_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
IntPtr intPtr3 = intPtr;
|
|
return (intPtr3 != 0) ? new Il2CppStringArray(intPtr3) : null;
|
|
}
|
|
|
|
// Token: 0x0600A2E5 RID: 41701 RVA: 0x0029DB84 File Offset: 0x0029BD84
|
|
// Note: this type is marked as 'beforefieldinit'.
|
|
static VolumeEffect()
|
|
{
|
|
Il2CppClassPointerStore<VolumeEffect>.NativeClassPtr = IL2CPP.GetIl2CppClass("Assembly-CSharp.dll", "AmplifyColor", "VolumeEffect");
|
|
IL2CPP.il2cpp_runtime_class_init(Il2CppClassPointerStore<VolumeEffect>.NativeClassPtr);
|
|
VolumeEffect.NativeFieldInfoPtr_gameObject = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<VolumeEffect>.NativeClassPtr, "gameObject");
|
|
VolumeEffect.NativeFieldInfoPtr_components = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<VolumeEffect>.NativeClassPtr, "components");
|
|
VolumeEffect.NativeMethodInfoPtr__ctor_Public_Void_AmplifyColorBase_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<VolumeEffect>.NativeClassPtr, 100675941);
|
|
VolumeEffect.NativeMethodInfoPtr_BlendValuesToVolumeEffect_Public_Static_VolumeEffect_VolumeEffectFlags_VolumeEffect_VolumeEffect_Single_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<VolumeEffect>.NativeClassPtr, 100675942);
|
|
VolumeEffect.NativeMethodInfoPtr_AddComponent_Public_VolumeEffectComponent_Component_VolumeEffectComponentFlags_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<VolumeEffect>.NativeClassPtr, 100675943);
|
|
VolumeEffect.NativeMethodInfoPtr_RemoveEffectComponent_Public_Void_VolumeEffectComponent_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<VolumeEffect>.NativeClassPtr, 100675944);
|
|
VolumeEffect.NativeMethodInfoPtr_UpdateVolume_Public_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<VolumeEffect>.NativeClassPtr, 100675945);
|
|
VolumeEffect.NativeMethodInfoPtr_SetValues_Public_Void_AmplifyColorBase_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<VolumeEffect>.NativeClassPtr, 100675946);
|
|
VolumeEffect.NativeMethodInfoPtr_BlendValues_Public_Void_AmplifyColorBase_VolumeEffect_Single_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<VolumeEffect>.NativeClassPtr, 100675947);
|
|
VolumeEffect.NativeMethodInfoPtr_FindEffectComponent_Public_VolumeEffectComponent_String_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<VolumeEffect>.NativeClassPtr, 100675948);
|
|
VolumeEffect.NativeMethodInfoPtr_ListAcceptableComponents_Public_Static_Il2CppReferenceArray_1_Component_AmplifyColorBase_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<VolumeEffect>.NativeClassPtr, 100675949);
|
|
VolumeEffect.NativeMethodInfoPtr_GetComponentNames_Public_Il2CppStringArray_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<VolumeEffect>.NativeClassPtr, 100675950);
|
|
}
|
|
|
|
// Token: 0x0600A2E6 RID: 41702 RVA: 0x0000A74C File Offset: 0x0000894C
|
|
public VolumeEffect(IntPtr pointer)
|
|
: base(pointer)
|
|
{
|
|
}
|
|
|
|
// Token: 0x17003711 RID: 14097
|
|
// (get) Token: 0x0600A2E7 RID: 41703 RVA: 0x0029DCA4 File Offset: 0x0029BEA4
|
|
// (set) Token: 0x0600A2E8 RID: 41704 RVA: 0x0029DCD8 File Offset: 0x0029BED8
|
|
public unsafe AmplifyColorBase gameObject
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(VolumeEffect.NativeFieldInfoPtr_gameObject);
|
|
IntPtr intPtr2 = *intPtr;
|
|
return (intPtr2 != 0) ? new AmplifyColorBase(intPtr2) : null;
|
|
}
|
|
set
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(VolumeEffect.NativeFieldInfoPtr_gameObject), IL2CPP.Il2CppObjectBaseToPtr(value));
|
|
}
|
|
}
|
|
|
|
// Token: 0x17003712 RID: 14098
|
|
// (get) Token: 0x0600A2E9 RID: 41705 RVA: 0x0029DD00 File Offset: 0x0029BF00
|
|
// (set) Token: 0x0600A2EA RID: 41706 RVA: 0x0029DD34 File Offset: 0x0029BF34
|
|
public unsafe List<VolumeEffectComponent> components
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(VolumeEffect.NativeFieldInfoPtr_components);
|
|
IntPtr intPtr2 = *intPtr;
|
|
return (intPtr2 != 0) ? new List<VolumeEffectComponent>(intPtr2) : null;
|
|
}
|
|
set
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(VolumeEffect.NativeFieldInfoPtr_components), IL2CPP.Il2CppObjectBaseToPtr(value));
|
|
}
|
|
}
|
|
|
|
// Token: 0x04006D8F RID: 28047
|
|
private static readonly IntPtr NativeFieldInfoPtr_gameObject;
|
|
|
|
// Token: 0x04006D90 RID: 28048
|
|
private static readonly IntPtr NativeFieldInfoPtr_components;
|
|
|
|
// Token: 0x04006D91 RID: 28049
|
|
private static readonly IntPtr NativeMethodInfoPtr__ctor_Public_Void_AmplifyColorBase_0;
|
|
|
|
// Token: 0x04006D92 RID: 28050
|
|
private static readonly IntPtr NativeMethodInfoPtr_BlendValuesToVolumeEffect_Public_Static_VolumeEffect_VolumeEffectFlags_VolumeEffect_VolumeEffect_Single_0;
|
|
|
|
// Token: 0x04006D93 RID: 28051
|
|
private static readonly IntPtr NativeMethodInfoPtr_AddComponent_Public_VolumeEffectComponent_Component_VolumeEffectComponentFlags_0;
|
|
|
|
// Token: 0x04006D94 RID: 28052
|
|
private static readonly IntPtr NativeMethodInfoPtr_RemoveEffectComponent_Public_Void_VolumeEffectComponent_0;
|
|
|
|
// Token: 0x04006D95 RID: 28053
|
|
private static readonly IntPtr NativeMethodInfoPtr_UpdateVolume_Public_Void_0;
|
|
|
|
// Token: 0x04006D96 RID: 28054
|
|
private static readonly IntPtr NativeMethodInfoPtr_SetValues_Public_Void_AmplifyColorBase_0;
|
|
|
|
// Token: 0x04006D97 RID: 28055
|
|
private static readonly IntPtr NativeMethodInfoPtr_BlendValues_Public_Void_AmplifyColorBase_VolumeEffect_Single_0;
|
|
|
|
// Token: 0x04006D98 RID: 28056
|
|
private static readonly IntPtr NativeMethodInfoPtr_FindEffectComponent_Public_VolumeEffectComponent_String_0;
|
|
|
|
// Token: 0x04006D99 RID: 28057
|
|
private static readonly IntPtr NativeMethodInfoPtr_ListAcceptableComponents_Public_Static_Il2CppReferenceArray_1_Component_AmplifyColorBase_0;
|
|
|
|
// Token: 0x04006D9A RID: 28058
|
|
private static readonly IntPtr NativeMethodInfoPtr_GetComponentNames_Public_Il2CppStringArray_0;
|
|
|
|
// Token: 0x02000647 RID: 1607
|
|
[ObfuscatedName("AmplifyColor.VolumeEffect/<>c")]
|
|
[Serializable]
|
|
public sealed class __c : Il2CppSystem.Object
|
|
{
|
|
// Token: 0x0600A2EB RID: 41707 RVA: 0x0029DD5C File Offset: 0x0029BF5C
|
|
[CallerCount(1659)]
|
|
[CachedScanResults(RefRangeStart = 7639, RefRangeEnd = 9298, XrefRangeStart = 7639, XrefRangeEnd = 9298, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe __c()
|
|
: this(IL2CPP.il2cpp_object_new(Il2CppClassPointerStore<VolumeEffect.__c>.NativeClassPtr))
|
|
{
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(VolumeEffect.__c.NativeMethodInfoPtr__ctor_Public_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x0600A2EC RID: 41708 RVA: 0x0029DDA8 File Offset: 0x0029BFA8
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 644411, XrefRangeEnd = 644423, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe bool _ListAcceptableComponents_b__10_0(Component comp)
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
checked
|
|
{
|
|
IntPtr* ptr = stackalloc IntPtr[unchecked((UIntPtr)1) * (UIntPtr)sizeof(IntPtr)];
|
|
*ptr = IL2CPP.Il2CppObjectBaseToPtr(comp);
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(VolumeEffect.__c.NativeMethodInfoPtr__ListAcceptableComponents_b__10_0_Internal_Boolean_Component_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
return *IL2CPP.il2cpp_object_unbox(intPtr);
|
|
}
|
|
}
|
|
|
|
// Token: 0x0600A2ED RID: 41709 RVA: 0x0029DE10 File Offset: 0x0029C010
|
|
[CallerCount(0)]
|
|
public unsafe string _GetComponentNames_b__11_0(VolumeEffectComponent r)
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
checked
|
|
{
|
|
IntPtr* ptr = stackalloc IntPtr[unchecked((UIntPtr)1) * (UIntPtr)sizeof(IntPtr)];
|
|
*ptr = IL2CPP.Il2CppObjectBaseToPtr(r);
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(VolumeEffect.__c.NativeMethodInfoPtr__GetComponentNames_b__11_0_Internal_String_VolumeEffectComponent_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
return IL2CPP.Il2CppStringToManaged(intPtr);
|
|
}
|
|
}
|
|
|
|
// Token: 0x0600A2EE RID: 41710 RVA: 0x0029DE74 File Offset: 0x0029C074
|
|
// Note: this type is marked as 'beforefieldinit'.
|
|
static __c()
|
|
{
|
|
Il2CppClassPointerStore<VolumeEffect.__c>.NativeClassPtr = IL2CPP.GetIl2CppNestedType(Il2CppClassPointerStore<VolumeEffect>.NativeClassPtr, "<>c");
|
|
IL2CPP.il2cpp_runtime_class_init(Il2CppClassPointerStore<VolumeEffect.__c>.NativeClassPtr);
|
|
VolumeEffect.__c.NativeFieldInfoPtr___9 = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<VolumeEffect.__c>.NativeClassPtr, "<>9");
|
|
VolumeEffect.__c.NativeFieldInfoPtr___9__10_0 = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<VolumeEffect.__c>.NativeClassPtr, "<>9__10_0");
|
|
VolumeEffect.__c.NativeFieldInfoPtr___9__11_0 = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<VolumeEffect.__c>.NativeClassPtr, "<>9__11_0");
|
|
VolumeEffect.__c.NativeMethodInfoPtr__ctor_Public_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<VolumeEffect.__c>.NativeClassPtr, 100675952);
|
|
VolumeEffect.__c.NativeMethodInfoPtr__ListAcceptableComponents_b__10_0_Internal_Boolean_Component_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<VolumeEffect.__c>.NativeClassPtr, 100675953);
|
|
VolumeEffect.__c.NativeMethodInfoPtr__GetComponentNames_b__11_0_Internal_String_VolumeEffectComponent_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<VolumeEffect.__c>.NativeClassPtr, 100675954);
|
|
}
|
|
|
|
// Token: 0x0600A2EF RID: 41711 RVA: 0x0000A74C File Offset: 0x0000894C
|
|
public __c(IntPtr pointer)
|
|
: base(pointer)
|
|
{
|
|
}
|
|
|
|
// Token: 0x17003713 RID: 14099
|
|
// (get) Token: 0x0600A2F0 RID: 41712 RVA: 0x0029DF18 File Offset: 0x0029C118
|
|
// (set) Token: 0x0600A2F1 RID: 41713 RVA: 0x0029DF43 File Offset: 0x0029C143
|
|
public unsafe static VolumeEffect.__c __9
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr;
|
|
IL2CPP.il2cpp_field_static_get_value(VolumeEffect.__c.NativeFieldInfoPtr___9, (void*)(&intPtr));
|
|
IntPtr intPtr2 = intPtr;
|
|
return (intPtr2 != 0) ? new VolumeEffect.__c(intPtr2) : null;
|
|
}
|
|
set
|
|
{
|
|
IL2CPP.il2cpp_field_static_set_value(VolumeEffect.__c.NativeFieldInfoPtr___9, IL2CPP.Il2CppObjectBaseToPtr(value));
|
|
}
|
|
}
|
|
|
|
// Token: 0x17003714 RID: 14100
|
|
// (get) Token: 0x0600A2F2 RID: 41714 RVA: 0x0029DF58 File Offset: 0x0029C158
|
|
// (set) Token: 0x0600A2F3 RID: 41715 RVA: 0x0029DF83 File Offset: 0x0029C183
|
|
public unsafe static Func<Component, bool> __9__10_0
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr;
|
|
IL2CPP.il2cpp_field_static_get_value(VolumeEffect.__c.NativeFieldInfoPtr___9__10_0, (void*)(&intPtr));
|
|
IntPtr intPtr2 = intPtr;
|
|
return (intPtr2 != 0) ? new Func<Component, bool>(intPtr2) : null;
|
|
}
|
|
set
|
|
{
|
|
IL2CPP.il2cpp_field_static_set_value(VolumeEffect.__c.NativeFieldInfoPtr___9__10_0, IL2CPP.Il2CppObjectBaseToPtr(value));
|
|
}
|
|
}
|
|
|
|
// Token: 0x17003715 RID: 14101
|
|
// (get) Token: 0x0600A2F4 RID: 41716 RVA: 0x0029DF98 File Offset: 0x0029C198
|
|
// (set) Token: 0x0600A2F5 RID: 41717 RVA: 0x0029DFC3 File Offset: 0x0029C1C3
|
|
public unsafe static Func<VolumeEffectComponent, string> __9__11_0
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr;
|
|
IL2CPP.il2cpp_field_static_get_value(VolumeEffect.__c.NativeFieldInfoPtr___9__11_0, (void*)(&intPtr));
|
|
IntPtr intPtr2 = intPtr;
|
|
return (intPtr2 != 0) ? new Func<VolumeEffectComponent, string>(intPtr2) : null;
|
|
}
|
|
set
|
|
{
|
|
IL2CPP.il2cpp_field_static_set_value(VolumeEffect.__c.NativeFieldInfoPtr___9__11_0, IL2CPP.Il2CppObjectBaseToPtr(value));
|
|
}
|
|
}
|
|
|
|
// Token: 0x04006D9B RID: 28059
|
|
private static readonly IntPtr NativeFieldInfoPtr___9;
|
|
|
|
// Token: 0x04006D9C RID: 28060
|
|
private static readonly IntPtr NativeFieldInfoPtr___9__10_0;
|
|
|
|
// Token: 0x04006D9D RID: 28061
|
|
private static readonly IntPtr NativeFieldInfoPtr___9__11_0;
|
|
|
|
// Token: 0x04006D9E RID: 28062
|
|
private static readonly IntPtr NativeMethodInfoPtr__ctor_Public_Void_0;
|
|
|
|
// Token: 0x04006D9F RID: 28063
|
|
private static readonly IntPtr NativeMethodInfoPtr__ListAcceptableComponents_b__10_0_Internal_Boolean_Component_0;
|
|
|
|
// Token: 0x04006DA0 RID: 28064
|
|
private static readonly IntPtr NativeMethodInfoPtr__GetComponentNames_b__11_0_Internal_String_VolumeEffectComponent_0;
|
|
}
|
|
}
|
|
}
|