Files
NobetaSource/Interop/Assembly-CSharp/ch/sycoforge/Decal/Demo/Footprints.cs
2023-09-06 22:09:22 +02:00

196 lines
8.3 KiB
C#

using System;
using Il2CppInterop.Common.Attributes;
using Il2CppInterop.Runtime;
using UnityEngine;
namespace ch.sycoforge.Decal.Demo
{
// Token: 0x02000603 RID: 1539
public class Footprints : MonoBehaviour
{
// Token: 0x06009F44 RID: 40772 RVA: 0x0028C3C8 File Offset: 0x0028A5C8
[CallerCount(0)]
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 640383, XrefRangeEnd = 640393, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
public unsafe void Start()
{
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
IntPtr* ptr = null;
IntPtr intPtr2;
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(Footprints.NativeMethodInfoPtr_Start_Public_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
}
// Token: 0x06009F45 RID: 40773 RVA: 0x0028C40C File Offset: 0x0028A60C
[CallerCount(0)]
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 640393, XrefRangeEnd = 640428, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
public unsafe void Update()
{
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
IntPtr* ptr = null;
IntPtr intPtr2;
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(Footprints.NativeMethodInfoPtr_Update_Public_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
}
// Token: 0x06009F46 RID: 40774 RVA: 0x0028C450 File Offset: 0x0028A650
[CallerCount(0)]
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 640428, XrefRangeEnd = 640429, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
public unsafe Footprints()
: this(IL2CPP.il2cpp_object_new(Il2CppClassPointerStore<Footprints>.NativeClassPtr))
{
IntPtr* ptr = null;
IntPtr intPtr2;
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(Footprints.NativeMethodInfoPtr__ctor_Public_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
}
// Token: 0x06009F47 RID: 40775 RVA: 0x0028C49C File Offset: 0x0028A69C
// Note: this type is marked as 'beforefieldinit'.
static Footprints()
{
Il2CppClassPointerStore<Footprints>.NativeClassPtr = IL2CPP.GetIl2CppClass("Assembly-CSharp.dll", "ch.sycoforge.Decal.Demo", "Footprints");
IL2CPP.il2cpp_runtime_class_init(Il2CppClassPointerStore<Footprints>.NativeClassPtr);
Footprints.NativeFieldInfoPtr_DecalPrefab = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<Footprints>.NativeClassPtr, "DecalPrefab");
Footprints.NativeFieldInfoPtr_DistanceThreshold = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<Footprints>.NativeClassPtr, "DistanceThreshold");
Footprints.NativeFieldInfoPtr_FootDistance = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<Footprints>.NativeClassPtr, "FootDistance");
Footprints.NativeFieldInfoPtr_distance = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<Footprints>.NativeClassPtr, "distance");
Footprints.NativeFieldInfoPtr_index = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<Footprints>.NativeClassPtr, "index");
Footprints.NativeFieldInfoPtr_lastPosition = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<Footprints>.NativeClassPtr, "lastPosition");
Footprints.NativeMethodInfoPtr_Start_Public_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<Footprints>.NativeClassPtr, 100675544);
Footprints.NativeMethodInfoPtr_Update_Public_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<Footprints>.NativeClassPtr, 100675545);
Footprints.NativeMethodInfoPtr__ctor_Public_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<Footprints>.NativeClassPtr, 100675546);
}
// Token: 0x06009F48 RID: 40776 RVA: 0x0000351C File Offset: 0x0000171C
public Footprints(IntPtr pointer)
: base(pointer)
{
}
// Token: 0x1700360D RID: 13837
// (get) Token: 0x06009F49 RID: 40777 RVA: 0x0028C580 File Offset: 0x0028A780
// (set) Token: 0x06009F4A RID: 40778 RVA: 0x0028C5B4 File Offset: 0x0028A7B4
public unsafe EasyDecal DecalPrefab
{
get
{
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(Footprints.NativeFieldInfoPtr_DecalPrefab);
IntPtr intPtr2 = *intPtr;
return (intPtr2 != 0) ? new EasyDecal(intPtr2) : null;
}
set
{
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(Footprints.NativeFieldInfoPtr_DecalPrefab), IL2CPP.Il2CppObjectBaseToPtr(value));
}
}
// Token: 0x1700360E RID: 13838
// (get) Token: 0x06009F4B RID: 40779 RVA: 0x0028C5DC File Offset: 0x0028A7DC
// (set) Token: 0x06009F4C RID: 40780 RVA: 0x0028C604 File Offset: 0x0028A804
public unsafe float DistanceThreshold
{
get
{
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(Footprints.NativeFieldInfoPtr_DistanceThreshold);
return *intPtr;
}
set
{
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(Footprints.NativeFieldInfoPtr_DistanceThreshold)) = value;
}
}
// Token: 0x1700360F RID: 13839
// (get) Token: 0x06009F4D RID: 40781 RVA: 0x0028C628 File Offset: 0x0028A828
// (set) Token: 0x06009F4E RID: 40782 RVA: 0x0028C650 File Offset: 0x0028A850
public unsafe float FootDistance
{
get
{
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(Footprints.NativeFieldInfoPtr_FootDistance);
return *intPtr;
}
set
{
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(Footprints.NativeFieldInfoPtr_FootDistance)) = value;
}
}
// Token: 0x17003610 RID: 13840
// (get) Token: 0x06009F4F RID: 40783 RVA: 0x0028C674 File Offset: 0x0028A874
// (set) Token: 0x06009F50 RID: 40784 RVA: 0x0028C69C File Offset: 0x0028A89C
public unsafe float distance
{
get
{
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(Footprints.NativeFieldInfoPtr_distance);
return *intPtr;
}
set
{
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(Footprints.NativeFieldInfoPtr_distance)) = value;
}
}
// Token: 0x17003611 RID: 13841
// (get) Token: 0x06009F51 RID: 40785 RVA: 0x0028C6C0 File Offset: 0x0028A8C0
// (set) Token: 0x06009F52 RID: 40786 RVA: 0x0028C6E8 File Offset: 0x0028A8E8
public unsafe int index
{
get
{
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(Footprints.NativeFieldInfoPtr_index);
return *intPtr;
}
set
{
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(Footprints.NativeFieldInfoPtr_index)) = value;
}
}
// Token: 0x17003612 RID: 13842
// (get) Token: 0x06009F53 RID: 40787 RVA: 0x0028C70C File Offset: 0x0028A90C
// (set) Token: 0x06009F54 RID: 40788 RVA: 0x0028C734 File Offset: 0x0028A934
public unsafe Vector3 lastPosition
{
get
{
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(Footprints.NativeFieldInfoPtr_lastPosition);
return *intPtr;
}
set
{
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(Footprints.NativeFieldInfoPtr_lastPosition)) = value;
}
}
// Token: 0x04006AB0 RID: 27312
private static readonly IntPtr NativeFieldInfoPtr_DecalPrefab;
// Token: 0x04006AB1 RID: 27313
private static readonly IntPtr NativeFieldInfoPtr_DistanceThreshold;
// Token: 0x04006AB2 RID: 27314
private static readonly IntPtr NativeFieldInfoPtr_FootDistance;
// Token: 0x04006AB3 RID: 27315
private static readonly IntPtr NativeFieldInfoPtr_distance;
// Token: 0x04006AB4 RID: 27316
private static readonly IntPtr NativeFieldInfoPtr_index;
// Token: 0x04006AB5 RID: 27317
private static readonly IntPtr NativeFieldInfoPtr_lastPosition;
// Token: 0x04006AB6 RID: 27318
private static readonly IntPtr NativeMethodInfoPtr_Start_Public_Void_0;
// Token: 0x04006AB7 RID: 27319
private static readonly IntPtr NativeMethodInfoPtr_Update_Public_Void_0;
// Token: 0x04006AB8 RID: 27320
private static readonly IntPtr NativeMethodInfoPtr__ctor_Public_Void_0;
}
}