411 lines
19 KiB
C#
411 lines
19 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Il2CppInterop.Common.Attributes;
|
|
using Il2CppInterop.Runtime;
|
|
using Il2CppSystem;
|
|
|
|
namespace UnityEngine.PostProcessing
|
|
{
|
|
// Token: 0x020005A8 RID: 1448
|
|
[Serializable]
|
|
public class BloomModel : PostProcessingModel
|
|
{
|
|
// Token: 0x1700355B RID: 13659
|
|
// (get) Token: 0x06009E39 RID: 40505 RVA: 0x0028A694 File Offset: 0x00288894
|
|
// (set) Token: 0x06009E3A RID: 40506 RVA: 0x0028A6E0 File Offset: 0x002888E0
|
|
public unsafe BloomModel.Settings settings
|
|
{
|
|
[CallerCount(0)]
|
|
get
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(BloomModel.NativeMethodInfoPtr_get_settings_Public_get_Settings_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
return new BloomModel.Settings(intPtr);
|
|
}
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 648707, XrefRangeEnd = 648708, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
set
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
checked
|
|
{
|
|
IntPtr* ptr = stackalloc IntPtr[unchecked((UIntPtr)1) * (UIntPtr)sizeof(IntPtr)];
|
|
*ptr = IL2CPP.il2cpp_object_unbox(IL2CPP.Il2CppObjectBaseToPtrNotNull(value));
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(BloomModel.NativeMethodInfoPtr_set_settings_Public_set_Void_Settings_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x06009E3B RID: 40507 RVA: 0x0028A740 File Offset: 0x00288940
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 648708, XrefRangeEnd = 648710, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe override void Reset()
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(IL2CPP.il2cpp_object_get_virtual_method(IL2CPP.Il2CppObjectBaseToPtr(this), BloomModel.NativeMethodInfoPtr_Reset_Public_Virtual_Void_0), IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x06009E3C RID: 40508 RVA: 0x0028A790 File Offset: 0x00288990
|
|
[CallerCount(1)]
|
|
[CachedScanResults(RefRangeStart = 648713, RefRangeEnd = 648714, XrefRangeStart = 648710, XrefRangeEnd = 648713, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe BloomModel()
|
|
: this(IL2CPP.il2cpp_object_new(Il2CppClassPointerStore<BloomModel>.NativeClassPtr))
|
|
{
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(BloomModel.NativeMethodInfoPtr__ctor_Public_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x06009E3D RID: 40509 RVA: 0x0028A7DC File Offset: 0x002889DC
|
|
// Note: this type is marked as 'beforefieldinit'.
|
|
static BloomModel()
|
|
{
|
|
Il2CppClassPointerStore<BloomModel>.NativeClassPtr = IL2CPP.GetIl2CppClass("Assembly-CSharp.dll", "UnityEngine.PostProcessing", "BloomModel");
|
|
IL2CPP.il2cpp_runtime_class_init(Il2CppClassPointerStore<BloomModel>.NativeClassPtr);
|
|
BloomModel.NativeFieldInfoPtr_m_Settings = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<BloomModel>.NativeClassPtr, "m_Settings");
|
|
BloomModel.NativeMethodInfoPtr_get_settings_Public_get_Settings_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<BloomModel>.NativeClassPtr, 100675670);
|
|
BloomModel.NativeMethodInfoPtr_set_settings_Public_set_Void_Settings_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<BloomModel>.NativeClassPtr, 100675671);
|
|
BloomModel.NativeMethodInfoPtr_Reset_Public_Virtual_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<BloomModel>.NativeClassPtr, 100675672);
|
|
BloomModel.NativeMethodInfoPtr__ctor_Public_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<BloomModel>.NativeClassPtr, 100675673);
|
|
}
|
|
|
|
// Token: 0x06009E3E RID: 40510 RVA: 0x00289EDC File Offset: 0x002880DC
|
|
public BloomModel(IntPtr pointer)
|
|
: base(pointer)
|
|
{
|
|
}
|
|
|
|
// Token: 0x1700355A RID: 13658
|
|
// (get) Token: 0x06009E3F RID: 40511 RVA: 0x0028A870 File Offset: 0x00288A70
|
|
// (set) Token: 0x06009E40 RID: 40512 RVA: 0x0028A8A2 File Offset: 0x00288AA2
|
|
public BloomModel.Settings m_Settings
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(BloomModel.NativeFieldInfoPtr_m_Settings);
|
|
return new BloomModel.Settings(IL2CPP.il2cpp_value_box(Il2CppClassPointerStore<BloomModel.Settings>.NativeClassPtr, intPtr));
|
|
}
|
|
set
|
|
{
|
|
cpblk(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(BloomModel.NativeFieldInfoPtr_m_Settings), IL2CPP.il2cpp_object_unbox(IL2CPP.Il2CppObjectBaseToPtr(value)), IL2CPP.il2cpp_class_value_size(Il2CppClassPointerStore<BloomModel.Settings>.NativeClassPtr, (UIntPtr)0));
|
|
}
|
|
}
|
|
|
|
// Token: 0x040069B6 RID: 27062
|
|
private static readonly IntPtr NativeFieldInfoPtr_m_Settings;
|
|
|
|
// Token: 0x040069B7 RID: 27063
|
|
private static readonly IntPtr NativeMethodInfoPtr_get_settings_Public_get_Settings_0;
|
|
|
|
// Token: 0x040069B8 RID: 27064
|
|
private static readonly IntPtr NativeMethodInfoPtr_set_settings_Public_set_Void_Settings_0;
|
|
|
|
// Token: 0x040069B9 RID: 27065
|
|
private static readonly IntPtr NativeMethodInfoPtr_Reset_Public_Virtual_Void_0;
|
|
|
|
// Token: 0x040069BA RID: 27066
|
|
private static readonly IntPtr NativeMethodInfoPtr__ctor_Public_Void_0;
|
|
|
|
// Token: 0x020005A9 RID: 1449
|
|
[Serializable]
|
|
[StructLayout(2)]
|
|
public struct BloomSettings
|
|
{
|
|
// Token: 0x1700355C RID: 13660
|
|
// (get) Token: 0x06009E42 RID: 40514 RVA: 0x0028A920 File Offset: 0x00288B20
|
|
// (set) Token: 0x06009E41 RID: 40513 RVA: 0x0028A8D8 File Offset: 0x00288AD8
|
|
public unsafe float thresholdLinear
|
|
{
|
|
[CallerCount(1)]
|
|
[CachedScanResults(RefRangeStart = 648701, RefRangeEnd = 648702, XrefRangeStart = 648700, XrefRangeEnd = 648701, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
get
|
|
{
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(BloomModel.BloomSettings.NativeMethodInfoPtr_get_thresholdLinear_Public_get_Single_0, ref this, (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
return *IL2CPP.il2cpp_object_unbox(intPtr);
|
|
}
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 648699, XrefRangeEnd = 648700, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
set
|
|
{
|
|
checked
|
|
{
|
|
IntPtr* ptr = stackalloc IntPtr[unchecked((UIntPtr)1) * (UIntPtr)sizeof(IntPtr)];
|
|
*ptr = ref value;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(BloomModel.BloomSettings.NativeMethodInfoPtr_set_thresholdLinear_Public_set_Void_Single_0, ref this, (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x1700355D RID: 13661
|
|
// (get) Token: 0x06009E43 RID: 40515 RVA: 0x0028A964 File Offset: 0x00288B64
|
|
public unsafe static BloomModel.BloomSettings defaultSettings
|
|
{
|
|
[CallerCount(0)]
|
|
get
|
|
{
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(BloomModel.BloomSettings.NativeMethodInfoPtr_get_defaultSettings_Public_Static_get_BloomSettings_0, 0, (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
return *IL2CPP.il2cpp_object_unbox(intPtr);
|
|
}
|
|
}
|
|
|
|
// Token: 0x06009E44 RID: 40516 RVA: 0x0028A9A8 File Offset: 0x00288BA8
|
|
// Note: this type is marked as 'beforefieldinit'.
|
|
static BloomSettings()
|
|
{
|
|
Il2CppClassPointerStore<BloomModel.BloomSettings>.NativeClassPtr = IL2CPP.GetIl2CppNestedType(Il2CppClassPointerStore<BloomModel>.NativeClassPtr, "BloomSettings");
|
|
IL2CPP.il2cpp_runtime_class_init(Il2CppClassPointerStore<BloomModel.BloomSettings>.NativeClassPtr);
|
|
BloomModel.BloomSettings.NativeFieldInfoPtr_intensity = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<BloomModel.BloomSettings>.NativeClassPtr, "intensity");
|
|
BloomModel.BloomSettings.NativeFieldInfoPtr_threshold = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<BloomModel.BloomSettings>.NativeClassPtr, "threshold");
|
|
BloomModel.BloomSettings.NativeFieldInfoPtr_softKnee = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<BloomModel.BloomSettings>.NativeClassPtr, "softKnee");
|
|
BloomModel.BloomSettings.NativeFieldInfoPtr_radius = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<BloomModel.BloomSettings>.NativeClassPtr, "radius");
|
|
BloomModel.BloomSettings.NativeFieldInfoPtr_antiFlicker = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<BloomModel.BloomSettings>.NativeClassPtr, "antiFlicker");
|
|
BloomModel.BloomSettings.NativeMethodInfoPtr_set_thresholdLinear_Public_set_Void_Single_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<BloomModel.BloomSettings>.NativeClassPtr, 100675674);
|
|
BloomModel.BloomSettings.NativeMethodInfoPtr_get_thresholdLinear_Public_get_Single_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<BloomModel.BloomSettings>.NativeClassPtr, 100675675);
|
|
BloomModel.BloomSettings.NativeMethodInfoPtr_get_defaultSettings_Public_Static_get_BloomSettings_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<BloomModel.BloomSettings>.NativeClassPtr, 100675676);
|
|
}
|
|
|
|
// Token: 0x06009E45 RID: 40517 RVA: 0x0028AA73 File Offset: 0x00288C73
|
|
public Object BoxIl2CppObject()
|
|
{
|
|
return new Object(IL2CPP.il2cpp_value_box(Il2CppClassPointerStore<BloomModel.BloomSettings>.NativeClassPtr, ref this));
|
|
}
|
|
|
|
// Token: 0x040069BB RID: 27067
|
|
private static readonly IntPtr NativeFieldInfoPtr_intensity;
|
|
|
|
// Token: 0x040069BC RID: 27068
|
|
private static readonly IntPtr NativeFieldInfoPtr_threshold;
|
|
|
|
// Token: 0x040069BD RID: 27069
|
|
private static readonly IntPtr NativeFieldInfoPtr_softKnee;
|
|
|
|
// Token: 0x040069BE RID: 27070
|
|
private static readonly IntPtr NativeFieldInfoPtr_radius;
|
|
|
|
// Token: 0x040069BF RID: 27071
|
|
private static readonly IntPtr NativeFieldInfoPtr_antiFlicker;
|
|
|
|
// Token: 0x040069C0 RID: 27072
|
|
private static readonly IntPtr NativeMethodInfoPtr_set_thresholdLinear_Public_set_Void_Single_0;
|
|
|
|
// Token: 0x040069C1 RID: 27073
|
|
private static readonly IntPtr NativeMethodInfoPtr_get_thresholdLinear_Public_get_Single_0;
|
|
|
|
// Token: 0x040069C2 RID: 27074
|
|
private static readonly IntPtr NativeMethodInfoPtr_get_defaultSettings_Public_Static_get_BloomSettings_0;
|
|
|
|
// Token: 0x040069C3 RID: 27075
|
|
[FieldOffset(0)]
|
|
public float intensity;
|
|
|
|
// Token: 0x040069C4 RID: 27076
|
|
[FieldOffset(4)]
|
|
public float threshold;
|
|
|
|
// Token: 0x040069C5 RID: 27077
|
|
[FieldOffset(8)]
|
|
public float softKnee;
|
|
|
|
// Token: 0x040069C6 RID: 27078
|
|
[FieldOffset(12)]
|
|
public float radius;
|
|
|
|
// Token: 0x040069C7 RID: 27079
|
|
[FieldOffset(16)]
|
|
[MarshalAs(4)]
|
|
public bool antiFlicker;
|
|
}
|
|
|
|
// Token: 0x020005AA RID: 1450
|
|
[Serializable]
|
|
public sealed class LensDirtSettings : ValueType
|
|
{
|
|
// Token: 0x17003560 RID: 13664
|
|
// (get) Token: 0x06009E46 RID: 40518 RVA: 0x0028AA88 File Offset: 0x00288C88
|
|
public unsafe static BloomModel.LensDirtSettings defaultSettings
|
|
{
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 648702, XrefRangeEnd = 648703, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
get
|
|
{
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(BloomModel.LensDirtSettings.NativeMethodInfoPtr_get_defaultSettings_Public_Static_get_LensDirtSettings_0, 0, (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
return new BloomModel.LensDirtSettings(intPtr);
|
|
}
|
|
}
|
|
|
|
// Token: 0x06009E47 RID: 40519 RVA: 0x0028AAC4 File Offset: 0x00288CC4
|
|
// Note: this type is marked as 'beforefieldinit'.
|
|
static LensDirtSettings()
|
|
{
|
|
Il2CppClassPointerStore<BloomModel.LensDirtSettings>.NativeClassPtr = IL2CPP.GetIl2CppNestedType(Il2CppClassPointerStore<BloomModel>.NativeClassPtr, "LensDirtSettings");
|
|
IL2CPP.il2cpp_runtime_class_init(Il2CppClassPointerStore<BloomModel.LensDirtSettings>.NativeClassPtr);
|
|
BloomModel.LensDirtSettings.NativeFieldInfoPtr_texture = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<BloomModel.LensDirtSettings>.NativeClassPtr, "texture");
|
|
BloomModel.LensDirtSettings.NativeFieldInfoPtr_intensity = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<BloomModel.LensDirtSettings>.NativeClassPtr, "intensity");
|
|
BloomModel.LensDirtSettings.NativeMethodInfoPtr_get_defaultSettings_Public_Static_get_LensDirtSettings_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<BloomModel.LensDirtSettings>.NativeClassPtr, 100675677);
|
|
}
|
|
|
|
// Token: 0x06009E48 RID: 40520 RVA: 0x001295E7 File Offset: 0x001277E7
|
|
public LensDirtSettings(IntPtr pointer)
|
|
: base(pointer)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06009E49 RID: 40521 RVA: 0x0028AB2C File Offset: 0x00288D2C
|
|
public unsafe LensDirtSettings()
|
|
{
|
|
IntPtr intPtr = stackalloc byte[(UIntPtr)IL2CPP.il2cpp_class_value_size(Il2CppClassPointerStore<BloomModel.LensDirtSettings>.NativeClassPtr, (UIntPtr)0)];
|
|
base..ctor(IL2CPP.il2cpp_value_box(Il2CppClassPointerStore<BloomModel.LensDirtSettings>.NativeClassPtr, intPtr));
|
|
}
|
|
|
|
// Token: 0x1700355E RID: 13662
|
|
// (get) Token: 0x06009E4A RID: 40522 RVA: 0x0028AB5C File Offset: 0x00288D5C
|
|
// (set) Token: 0x06009E4B RID: 40523 RVA: 0x0028AB90 File Offset: 0x00288D90
|
|
public unsafe Texture texture
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(BloomModel.LensDirtSettings.NativeFieldInfoPtr_texture);
|
|
IntPtr intPtr2 = *intPtr;
|
|
return (intPtr2 != 0) ? new Texture(intPtr2) : null;
|
|
}
|
|
set
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(BloomModel.LensDirtSettings.NativeFieldInfoPtr_texture), IL2CPP.Il2CppObjectBaseToPtr(value));
|
|
}
|
|
}
|
|
|
|
// Token: 0x1700355F RID: 13663
|
|
// (get) Token: 0x06009E4C RID: 40524 RVA: 0x0028ABB8 File Offset: 0x00288DB8
|
|
// (set) Token: 0x06009E4D RID: 40525 RVA: 0x0028ABE0 File Offset: 0x00288DE0
|
|
public unsafe float intensity
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(BloomModel.LensDirtSettings.NativeFieldInfoPtr_intensity);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(BloomModel.LensDirtSettings.NativeFieldInfoPtr_intensity)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x040069C8 RID: 27080
|
|
private static readonly IntPtr NativeFieldInfoPtr_texture;
|
|
|
|
// Token: 0x040069C9 RID: 27081
|
|
private static readonly IntPtr NativeFieldInfoPtr_intensity;
|
|
|
|
// Token: 0x040069CA RID: 27082
|
|
private static readonly IntPtr NativeMethodInfoPtr_get_defaultSettings_Public_Static_get_LensDirtSettings_0;
|
|
}
|
|
|
|
// Token: 0x020005AB RID: 1451
|
|
[Serializable]
|
|
public sealed class Settings : ValueType
|
|
{
|
|
// Token: 0x17003563 RID: 13667
|
|
// (get) Token: 0x06009E4E RID: 40526 RVA: 0x0028AC04 File Offset: 0x00288E04
|
|
public unsafe static BloomModel.Settings defaultSettings
|
|
{
|
|
[CallerCount(2)]
|
|
[CachedScanResults(RefRangeStart = 648705, RefRangeEnd = 648707, XrefRangeStart = 648703, XrefRangeEnd = 648705, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
get
|
|
{
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(BloomModel.Settings.NativeMethodInfoPtr_get_defaultSettings_Public_Static_get_Settings_0, 0, (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
return new BloomModel.Settings(intPtr);
|
|
}
|
|
}
|
|
|
|
// Token: 0x06009E4F RID: 40527 RVA: 0x0028AC40 File Offset: 0x00288E40
|
|
// Note: this type is marked as 'beforefieldinit'.
|
|
static Settings()
|
|
{
|
|
Il2CppClassPointerStore<BloomModel.Settings>.NativeClassPtr = IL2CPP.GetIl2CppNestedType(Il2CppClassPointerStore<BloomModel>.NativeClassPtr, "Settings");
|
|
IL2CPP.il2cpp_runtime_class_init(Il2CppClassPointerStore<BloomModel.Settings>.NativeClassPtr);
|
|
BloomModel.Settings.NativeFieldInfoPtr_bloom = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<BloomModel.Settings>.NativeClassPtr, "bloom");
|
|
BloomModel.Settings.NativeFieldInfoPtr_lensDirt = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<BloomModel.Settings>.NativeClassPtr, "lensDirt");
|
|
BloomModel.Settings.NativeMethodInfoPtr_get_defaultSettings_Public_Static_get_Settings_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<BloomModel.Settings>.NativeClassPtr, 100675678);
|
|
}
|
|
|
|
// Token: 0x06009E50 RID: 40528 RVA: 0x001295E7 File Offset: 0x001277E7
|
|
public Settings(IntPtr pointer)
|
|
: base(pointer)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06009E51 RID: 40529 RVA: 0x0028ACA8 File Offset: 0x00288EA8
|
|
public unsafe Settings()
|
|
{
|
|
IntPtr intPtr = stackalloc byte[(UIntPtr)IL2CPP.il2cpp_class_value_size(Il2CppClassPointerStore<BloomModel.Settings>.NativeClassPtr, (UIntPtr)0)];
|
|
base..ctor(IL2CPP.il2cpp_value_box(Il2CppClassPointerStore<BloomModel.Settings>.NativeClassPtr, intPtr));
|
|
}
|
|
|
|
// Token: 0x17003561 RID: 13665
|
|
// (get) Token: 0x06009E52 RID: 40530 RVA: 0x0028ACD8 File Offset: 0x00288ED8
|
|
// (set) Token: 0x06009E53 RID: 40531 RVA: 0x0028AD00 File Offset: 0x00288F00
|
|
public unsafe BloomModel.BloomSettings bloom
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(BloomModel.Settings.NativeFieldInfoPtr_bloom);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(BloomModel.Settings.NativeFieldInfoPtr_bloom)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x17003562 RID: 13666
|
|
// (get) Token: 0x06009E54 RID: 40532 RVA: 0x0028AD24 File Offset: 0x00288F24
|
|
// (set) Token: 0x06009E55 RID: 40533 RVA: 0x0028AD56 File Offset: 0x00288F56
|
|
public BloomModel.LensDirtSettings lensDirt
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(BloomModel.Settings.NativeFieldInfoPtr_lensDirt);
|
|
return new BloomModel.LensDirtSettings(IL2CPP.il2cpp_value_box(Il2CppClassPointerStore<BloomModel.LensDirtSettings>.NativeClassPtr, intPtr));
|
|
}
|
|
set
|
|
{
|
|
cpblk(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(BloomModel.Settings.NativeFieldInfoPtr_lensDirt), IL2CPP.il2cpp_object_unbox(IL2CPP.Il2CppObjectBaseToPtr(value)), IL2CPP.il2cpp_class_value_size(Il2CppClassPointerStore<BloomModel.LensDirtSettings>.NativeClassPtr, (UIntPtr)0));
|
|
}
|
|
}
|
|
|
|
// Token: 0x040069CB RID: 27083
|
|
private static readonly IntPtr NativeFieldInfoPtr_bloom;
|
|
|
|
// Token: 0x040069CC RID: 27084
|
|
private static readonly IntPtr NativeFieldInfoPtr_lensDirt;
|
|
|
|
// Token: 0x040069CD RID: 27085
|
|
private static readonly IntPtr NativeMethodInfoPtr_get_defaultSettings_Public_Static_get_Settings_0;
|
|
}
|
|
}
|
|
}
|