751 lines
35 KiB
C#
751 lines
35 KiB
C#
using System;
|
|
using Il2CppInterop.Common.Attributes;
|
|
using Il2CppInterop.Runtime;
|
|
using Il2CppSystem;
|
|
using Il2CppSystem.Collections;
|
|
using RootMotion.FinalIK;
|
|
using UnityEngine;
|
|
|
|
namespace RootMotion.Demos
|
|
{
|
|
// Token: 0x020003BB RID: 955
|
|
public class MechSpiderLeg : MonoBehaviour
|
|
{
|
|
// Token: 0x1700288F RID: 10383
|
|
// (get) Token: 0x06007698 RID: 30360 RVA: 0x001E496C File Offset: 0x001E2B6C
|
|
public unsafe bool isStepping
|
|
{
|
|
[CallerCount(0)]
|
|
get
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(MechSpiderLeg.NativeMethodInfoPtr_get_isStepping_Public_get_Boolean_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
return *IL2CPP.il2cpp_object_unbox(intPtr);
|
|
}
|
|
}
|
|
|
|
// Token: 0x17002890 RID: 10384
|
|
// (get) Token: 0x06007699 RID: 30361 RVA: 0x001E49BC File Offset: 0x001E2BBC
|
|
// (set) Token: 0x0600769A RID: 30362 RVA: 0x001E4A0C File Offset: 0x001E2C0C
|
|
public unsafe Vector3 position
|
|
{
|
|
[CallerCount(2)]
|
|
[CachedScanResults(RefRangeStart = 591571, RefRangeEnd = 591573, XrefRangeStart = 591571, XrefRangeEnd = 591571, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
get
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(MechSpiderLeg.NativeMethodInfoPtr_get_position_Public_get_Vector3_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
return *IL2CPP.il2cpp_object_unbox(intPtr);
|
|
}
|
|
[CallerCount(3)]
|
|
[CachedScanResults(RefRangeStart = 591573, RefRangeEnd = 591576, XrefRangeStart = 591573, XrefRangeEnd = 591573, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
set
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
checked
|
|
{
|
|
IntPtr* ptr = stackalloc IntPtr[unchecked((UIntPtr)1) * (UIntPtr)sizeof(IntPtr)];
|
|
*ptr = ref value;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(MechSpiderLeg.NativeMethodInfoPtr_set_position_Public_set_Void_Vector3_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Token: 0x0600769B RID: 30363 RVA: 0x001E4A60 File Offset: 0x001E2C60
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 591576, XrefRangeEnd = 591584, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe void Start()
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(MechSpiderLeg.NativeMethodInfoPtr_Start_Private_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x0600769C RID: 30364 RVA: 0x001E4AA4 File Offset: 0x001E2CA4
|
|
[CallerCount(2)]
|
|
[CachedScanResults(RefRangeStart = 591598, RefRangeEnd = 591600, XrefRangeStart = 591584, XrefRangeEnd = 591598, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe Vector3 GetStepTarget(out bool stepFound, float focus, float distance)
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr;
|
|
checked
|
|
{
|
|
ptr = stackalloc IntPtr[unchecked((UIntPtr)3) * (UIntPtr)sizeof(IntPtr)];
|
|
*ptr = &stepFound;
|
|
}
|
|
ptr[checked(unchecked((UIntPtr)1) * (UIntPtr)sizeof(IntPtr)) / (UIntPtr)sizeof(IntPtr)] = ref focus;
|
|
ptr[checked(unchecked((UIntPtr)2) * (UIntPtr)sizeof(IntPtr)) / (UIntPtr)sizeof(IntPtr)] = ref distance;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(MechSpiderLeg.NativeMethodInfoPtr_GetStepTarget_Private_Vector3_byref_Boolean_Single_Single_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
return *IL2CPP.il2cpp_object_unbox(intPtr);
|
|
}
|
|
|
|
// Token: 0x0600769D RID: 30365 RVA: 0x001E4B30 File Offset: 0x001E2D30
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 591600, XrefRangeEnd = 591616, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe void Update()
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(MechSpiderLeg.NativeMethodInfoPtr_Update_Private_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x0600769E RID: 30366 RVA: 0x001E4B74 File Offset: 0x001E2D74
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 591616, XrefRangeEnd = 591621, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe IEnumerator Step(Vector3 stepStartPosition, Vector3 targetPosition)
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr;
|
|
checked
|
|
{
|
|
ptr = stackalloc IntPtr[unchecked((UIntPtr)2) * (UIntPtr)sizeof(IntPtr)];
|
|
*ptr = ref stepStartPosition;
|
|
}
|
|
ptr[checked(unchecked((UIntPtr)1) * (UIntPtr)sizeof(IntPtr)) / (UIntPtr)sizeof(IntPtr)] = ref targetPosition;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(MechSpiderLeg.NativeMethodInfoPtr_Step_Private_IEnumerator_Vector3_Vector3_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
IntPtr intPtr3 = intPtr;
|
|
return (intPtr3 != 0) ? new IEnumerator(intPtr3) : null;
|
|
}
|
|
|
|
// Token: 0x0600769F RID: 30367 RVA: 0x001E4BF0 File Offset: 0x001E2DF0
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 591621, XrefRangeEnd = 591622, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe MechSpiderLeg()
|
|
: this(IL2CPP.il2cpp_object_new(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr))
|
|
{
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(MechSpiderLeg.NativeMethodInfoPtr__ctor_Public_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x060076A0 RID: 30368 RVA: 0x001E4C3C File Offset: 0x001E2E3C
|
|
// Note: this type is marked as 'beforefieldinit'.
|
|
static MechSpiderLeg()
|
|
{
|
|
Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr = IL2CPP.GetIl2CppClass("Assembly-CSharp.dll", "RootMotion.Demos", "MechSpiderLeg");
|
|
IL2CPP.il2cpp_runtime_class_init(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr);
|
|
MechSpiderLeg.NativeFieldInfoPtr_mechSpider = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, "mechSpider");
|
|
MechSpiderLeg.NativeFieldInfoPtr_unSync = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, "unSync");
|
|
MechSpiderLeg.NativeFieldInfoPtr_offset = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, "offset");
|
|
MechSpiderLeg.NativeFieldInfoPtr_minDelay = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, "minDelay");
|
|
MechSpiderLeg.NativeFieldInfoPtr_maxOffset = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, "maxOffset");
|
|
MechSpiderLeg.NativeFieldInfoPtr_stepSpeed = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, "stepSpeed");
|
|
MechSpiderLeg.NativeFieldInfoPtr_footHeight = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, "footHeight");
|
|
MechSpiderLeg.NativeFieldInfoPtr_velocityPrediction = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, "velocityPrediction");
|
|
MechSpiderLeg.NativeFieldInfoPtr_raycastFocus = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, "raycastFocus");
|
|
MechSpiderLeg.NativeFieldInfoPtr_yOffset = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, "yOffset");
|
|
MechSpiderLeg.NativeFieldInfoPtr_sand = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, "sand");
|
|
MechSpiderLeg.NativeFieldInfoPtr_ik = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, "ik");
|
|
MechSpiderLeg.NativeFieldInfoPtr_stepProgress = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, "stepProgress");
|
|
MechSpiderLeg.NativeFieldInfoPtr_lastStepTime = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, "lastStepTime");
|
|
MechSpiderLeg.NativeFieldInfoPtr_defaultPosition = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, "defaultPosition");
|
|
MechSpiderLeg.NativeFieldInfoPtr_hit = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, "hit");
|
|
MechSpiderLeg.NativeMethodInfoPtr_get_isStepping_Public_get_Boolean_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, 100672267);
|
|
MechSpiderLeg.NativeMethodInfoPtr_get_position_Public_get_Vector3_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, 100672268);
|
|
MechSpiderLeg.NativeMethodInfoPtr_set_position_Public_set_Void_Vector3_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, 100672269);
|
|
MechSpiderLeg.NativeMethodInfoPtr_Start_Private_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, 100672270);
|
|
MechSpiderLeg.NativeMethodInfoPtr_GetStepTarget_Private_Vector3_byref_Boolean_Single_Single_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, 100672271);
|
|
MechSpiderLeg.NativeMethodInfoPtr_Update_Private_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, 100672272);
|
|
MechSpiderLeg.NativeMethodInfoPtr_Step_Private_IEnumerator_Vector3_Vector3_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, 100672273);
|
|
MechSpiderLeg.NativeMethodInfoPtr__ctor_Public_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, 100672274);
|
|
}
|
|
|
|
// Token: 0x060076A1 RID: 30369 RVA: 0x0000351C File Offset: 0x0000171C
|
|
public MechSpiderLeg(IntPtr pointer)
|
|
: base(pointer)
|
|
{
|
|
}
|
|
|
|
// Token: 0x1700287F RID: 10367
|
|
// (get) Token: 0x060076A2 RID: 30370 RVA: 0x001E4E4C File Offset: 0x001E304C
|
|
// (set) Token: 0x060076A3 RID: 30371 RVA: 0x001E4E80 File Offset: 0x001E3080
|
|
public unsafe MechSpider mechSpider
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_mechSpider);
|
|
IntPtr intPtr2 = *intPtr;
|
|
return (intPtr2 != 0) ? new MechSpider(intPtr2) : null;
|
|
}
|
|
set
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_mechSpider), IL2CPP.Il2CppObjectBaseToPtr(value));
|
|
}
|
|
}
|
|
|
|
// Token: 0x17002880 RID: 10368
|
|
// (get) Token: 0x060076A4 RID: 30372 RVA: 0x001E4EA8 File Offset: 0x001E30A8
|
|
// (set) Token: 0x060076A5 RID: 30373 RVA: 0x001E4EDC File Offset: 0x001E30DC
|
|
public unsafe MechSpiderLeg unSync
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_unSync);
|
|
IntPtr intPtr2 = *intPtr;
|
|
return (intPtr2 != 0) ? new MechSpiderLeg(intPtr2) : null;
|
|
}
|
|
set
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_unSync), IL2CPP.Il2CppObjectBaseToPtr(value));
|
|
}
|
|
}
|
|
|
|
// Token: 0x17002881 RID: 10369
|
|
// (get) Token: 0x060076A6 RID: 30374 RVA: 0x001E4F04 File Offset: 0x001E3104
|
|
// (set) Token: 0x060076A7 RID: 30375 RVA: 0x001E4F2C File Offset: 0x001E312C
|
|
public unsafe Vector3 offset
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_offset);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_offset)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x17002882 RID: 10370
|
|
// (get) Token: 0x060076A8 RID: 30376 RVA: 0x001E4F50 File Offset: 0x001E3150
|
|
// (set) Token: 0x060076A9 RID: 30377 RVA: 0x001E4F78 File Offset: 0x001E3178
|
|
public unsafe float minDelay
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_minDelay);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_minDelay)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x17002883 RID: 10371
|
|
// (get) Token: 0x060076AA RID: 30378 RVA: 0x001E4F9C File Offset: 0x001E319C
|
|
// (set) Token: 0x060076AB RID: 30379 RVA: 0x001E4FC4 File Offset: 0x001E31C4
|
|
public unsafe float maxOffset
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_maxOffset);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_maxOffset)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x17002884 RID: 10372
|
|
// (get) Token: 0x060076AC RID: 30380 RVA: 0x001E4FE8 File Offset: 0x001E31E8
|
|
// (set) Token: 0x060076AD RID: 30381 RVA: 0x001E5010 File Offset: 0x001E3210
|
|
public unsafe float stepSpeed
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_stepSpeed);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_stepSpeed)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x17002885 RID: 10373
|
|
// (get) Token: 0x060076AE RID: 30382 RVA: 0x001E5034 File Offset: 0x001E3234
|
|
// (set) Token: 0x060076AF RID: 30383 RVA: 0x001E505C File Offset: 0x001E325C
|
|
public unsafe float footHeight
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_footHeight);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_footHeight)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x17002886 RID: 10374
|
|
// (get) Token: 0x060076B0 RID: 30384 RVA: 0x001E5080 File Offset: 0x001E3280
|
|
// (set) Token: 0x060076B1 RID: 30385 RVA: 0x001E50A8 File Offset: 0x001E32A8
|
|
public unsafe float velocityPrediction
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_velocityPrediction);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_velocityPrediction)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x17002887 RID: 10375
|
|
// (get) Token: 0x060076B2 RID: 30386 RVA: 0x001E50CC File Offset: 0x001E32CC
|
|
// (set) Token: 0x060076B3 RID: 30387 RVA: 0x001E50F4 File Offset: 0x001E32F4
|
|
public unsafe float raycastFocus
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_raycastFocus);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_raycastFocus)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x17002888 RID: 10376
|
|
// (get) Token: 0x060076B4 RID: 30388 RVA: 0x001E5118 File Offset: 0x001E3318
|
|
// (set) Token: 0x060076B5 RID: 30389 RVA: 0x001E514C File Offset: 0x001E334C
|
|
public unsafe AnimationCurve yOffset
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_yOffset);
|
|
IntPtr intPtr2 = *intPtr;
|
|
return (intPtr2 != 0) ? new AnimationCurve(intPtr2) : null;
|
|
}
|
|
set
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_yOffset), IL2CPP.Il2CppObjectBaseToPtr(value));
|
|
}
|
|
}
|
|
|
|
// Token: 0x17002889 RID: 10377
|
|
// (get) Token: 0x060076B6 RID: 30390 RVA: 0x001E5174 File Offset: 0x001E3374
|
|
// (set) Token: 0x060076B7 RID: 30391 RVA: 0x001E51A8 File Offset: 0x001E33A8
|
|
public unsafe ParticleSystem sand
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_sand);
|
|
IntPtr intPtr2 = *intPtr;
|
|
return (intPtr2 != 0) ? new ParticleSystem(intPtr2) : null;
|
|
}
|
|
set
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_sand), IL2CPP.Il2CppObjectBaseToPtr(value));
|
|
}
|
|
}
|
|
|
|
// Token: 0x1700288A RID: 10378
|
|
// (get) Token: 0x060076B8 RID: 30392 RVA: 0x001E51D0 File Offset: 0x001E33D0
|
|
// (set) Token: 0x060076B9 RID: 30393 RVA: 0x001E5204 File Offset: 0x001E3404
|
|
public unsafe IK ik
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_ik);
|
|
IntPtr intPtr2 = *intPtr;
|
|
return (intPtr2 != 0) ? new IK(intPtr2) : null;
|
|
}
|
|
set
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_ik), IL2CPP.Il2CppObjectBaseToPtr(value));
|
|
}
|
|
}
|
|
|
|
// Token: 0x1700288B RID: 10379
|
|
// (get) Token: 0x060076BA RID: 30394 RVA: 0x001E522C File Offset: 0x001E342C
|
|
// (set) Token: 0x060076BB RID: 30395 RVA: 0x001E5254 File Offset: 0x001E3454
|
|
public unsafe float stepProgress
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_stepProgress);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_stepProgress)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x1700288C RID: 10380
|
|
// (get) Token: 0x060076BC RID: 30396 RVA: 0x001E5278 File Offset: 0x001E3478
|
|
// (set) Token: 0x060076BD RID: 30397 RVA: 0x001E52A0 File Offset: 0x001E34A0
|
|
public unsafe float lastStepTime
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_lastStepTime);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_lastStepTime)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x1700288D RID: 10381
|
|
// (get) Token: 0x060076BE RID: 30398 RVA: 0x001E52C4 File Offset: 0x001E34C4
|
|
// (set) Token: 0x060076BF RID: 30399 RVA: 0x001E52EC File Offset: 0x001E34EC
|
|
public unsafe Vector3 defaultPosition
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_defaultPosition);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_defaultPosition)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x1700288E RID: 10382
|
|
// (get) Token: 0x060076C0 RID: 30400 RVA: 0x001E5310 File Offset: 0x001E3510
|
|
// (set) Token: 0x060076C1 RID: 30401 RVA: 0x001E5338 File Offset: 0x001E3538
|
|
public unsafe RaycastHit hit
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_hit);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg.NativeFieldInfoPtr_hit)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x04004FA7 RID: 20391
|
|
private static readonly IntPtr NativeFieldInfoPtr_mechSpider;
|
|
|
|
// Token: 0x04004FA8 RID: 20392
|
|
private static readonly IntPtr NativeFieldInfoPtr_unSync;
|
|
|
|
// Token: 0x04004FA9 RID: 20393
|
|
private static readonly IntPtr NativeFieldInfoPtr_offset;
|
|
|
|
// Token: 0x04004FAA RID: 20394
|
|
private static readonly IntPtr NativeFieldInfoPtr_minDelay;
|
|
|
|
// Token: 0x04004FAB RID: 20395
|
|
private static readonly IntPtr NativeFieldInfoPtr_maxOffset;
|
|
|
|
// Token: 0x04004FAC RID: 20396
|
|
private static readonly IntPtr NativeFieldInfoPtr_stepSpeed;
|
|
|
|
// Token: 0x04004FAD RID: 20397
|
|
private static readonly IntPtr NativeFieldInfoPtr_footHeight;
|
|
|
|
// Token: 0x04004FAE RID: 20398
|
|
private static readonly IntPtr NativeFieldInfoPtr_velocityPrediction;
|
|
|
|
// Token: 0x04004FAF RID: 20399
|
|
private static readonly IntPtr NativeFieldInfoPtr_raycastFocus;
|
|
|
|
// Token: 0x04004FB0 RID: 20400
|
|
private static readonly IntPtr NativeFieldInfoPtr_yOffset;
|
|
|
|
// Token: 0x04004FB1 RID: 20401
|
|
private static readonly IntPtr NativeFieldInfoPtr_sand;
|
|
|
|
// Token: 0x04004FB2 RID: 20402
|
|
private static readonly IntPtr NativeFieldInfoPtr_ik;
|
|
|
|
// Token: 0x04004FB3 RID: 20403
|
|
private static readonly IntPtr NativeFieldInfoPtr_stepProgress;
|
|
|
|
// Token: 0x04004FB4 RID: 20404
|
|
private static readonly IntPtr NativeFieldInfoPtr_lastStepTime;
|
|
|
|
// Token: 0x04004FB5 RID: 20405
|
|
private static readonly IntPtr NativeFieldInfoPtr_defaultPosition;
|
|
|
|
// Token: 0x04004FB6 RID: 20406
|
|
private static readonly IntPtr NativeFieldInfoPtr_hit;
|
|
|
|
// Token: 0x04004FB7 RID: 20407
|
|
private static readonly IntPtr NativeMethodInfoPtr_get_isStepping_Public_get_Boolean_0;
|
|
|
|
// Token: 0x04004FB8 RID: 20408
|
|
private static readonly IntPtr NativeMethodInfoPtr_get_position_Public_get_Vector3_0;
|
|
|
|
// Token: 0x04004FB9 RID: 20409
|
|
private static readonly IntPtr NativeMethodInfoPtr_set_position_Public_set_Void_Vector3_0;
|
|
|
|
// Token: 0x04004FBA RID: 20410
|
|
private static readonly IntPtr NativeMethodInfoPtr_Start_Private_Void_0;
|
|
|
|
// Token: 0x04004FBB RID: 20411
|
|
private static readonly IntPtr NativeMethodInfoPtr_GetStepTarget_Private_Vector3_byref_Boolean_Single_Single_0;
|
|
|
|
// Token: 0x04004FBC RID: 20412
|
|
private static readonly IntPtr NativeMethodInfoPtr_Update_Private_Void_0;
|
|
|
|
// Token: 0x04004FBD RID: 20413
|
|
private static readonly IntPtr NativeMethodInfoPtr_Step_Private_IEnumerator_Vector3_Vector3_0;
|
|
|
|
// Token: 0x04004FBE RID: 20414
|
|
private static readonly IntPtr NativeMethodInfoPtr__ctor_Public_Void_0;
|
|
|
|
// Token: 0x020003BC RID: 956
|
|
[ObfuscatedName("RootMotion.Demos.MechSpiderLeg/<Step>d__24")]
|
|
public sealed class _Step_d__24 : Il2CppSystem.Object
|
|
{
|
|
// Token: 0x060076C2 RID: 30402 RVA: 0x001E535C File Offset: 0x001E355C
|
|
[CallerCount(323)]
|
|
[CachedScanResults(RefRangeStart = 12254, RefRangeEnd = 12577, XrefRangeStart = 12254, XrefRangeEnd = 12577, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe _Step_d__24(int <>1__state)
|
|
: this(IL2CPP.il2cpp_object_new(Il2CppClassPointerStore<MechSpiderLeg._Step_d__24>.NativeClassPtr))
|
|
{
|
|
checked
|
|
{
|
|
IntPtr* ptr = stackalloc IntPtr[unchecked((UIntPtr)1) * (UIntPtr)sizeof(IntPtr)];
|
|
*ptr = ref <>1__state;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(MechSpiderLeg._Step_d__24.NativeMethodInfoPtr__ctor_Public_Void_Int32_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
}
|
|
|
|
// Token: 0x060076C3 RID: 30403 RVA: 0x001E53BC File Offset: 0x001E35BC
|
|
[CallerCount(5585)]
|
|
[CachedScanResults(RefRangeStart = 24, RefRangeEnd = 5609, XrefRangeStart = 24, XrefRangeEnd = 5609, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe void System_IDisposable_Dispose()
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(MechSpiderLeg._Step_d__24.NativeMethodInfoPtr_System_IDisposable_Dispose_Private_Virtual_Final_New_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x060076C4 RID: 30404 RVA: 0x001E5400 File Offset: 0x001E3600
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 591543, XrefRangeEnd = 591566, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe bool MoveNext()
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(MechSpiderLeg._Step_d__24.NativeMethodInfoPtr_MoveNext_Private_Virtual_Final_New_Boolean_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
return *IL2CPP.il2cpp_object_unbox(intPtr);
|
|
}
|
|
|
|
// Token: 0x17002896 RID: 10390
|
|
// (get) Token: 0x060076C5 RID: 30405 RVA: 0x001E5450 File Offset: 0x001E3650
|
|
public unsafe Il2CppSystem.Object Current
|
|
{
|
|
[CallerCount(10)]
|
|
[CachedScanResults(RefRangeStart = 7233, RefRangeEnd = 7243, XrefRangeStart = 7233, XrefRangeEnd = 7243, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
get
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(MechSpiderLeg._Step_d__24.NativeMethodInfoPtr_System_Collections_Generic_IEnumerator_System_Object__get_Current_Private_Virtual_Final_New_get_Object_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
IntPtr intPtr3 = intPtr;
|
|
return (intPtr3 != 0) ? new Il2CppSystem.Object(intPtr3) : null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x060076C6 RID: 30406 RVA: 0x001E54A8 File Offset: 0x001E36A8
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 591566, XrefRangeEnd = 591571, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe void System_Collections_IEnumerator_Reset()
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(MechSpiderLeg._Step_d__24.NativeMethodInfoPtr_System_Collections_IEnumerator_Reset_Private_Virtual_Final_New_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x17002897 RID: 10391
|
|
// (get) Token: 0x060076C7 RID: 30407 RVA: 0x001E54EC File Offset: 0x001E36EC
|
|
public unsafe Il2CppSystem.Object Current
|
|
{
|
|
[CallerCount(10)]
|
|
[CachedScanResults(RefRangeStart = 7233, RefRangeEnd = 7243, XrefRangeStart = 7233, XrefRangeEnd = 7243, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
get
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(MechSpiderLeg._Step_d__24.NativeMethodInfoPtr_System_Collections_IEnumerator_get_Current_Private_Virtual_Final_New_get_Object_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
IntPtr intPtr3 = intPtr;
|
|
return (intPtr3 != 0) ? new Il2CppSystem.Object(intPtr3) : null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x060076C8 RID: 30408 RVA: 0x001E5544 File Offset: 0x001E3744
|
|
// Note: this type is marked as 'beforefieldinit'.
|
|
static _Step_d__24()
|
|
{
|
|
Il2CppClassPointerStore<MechSpiderLeg._Step_d__24>.NativeClassPtr = IL2CPP.GetIl2CppNestedType(Il2CppClassPointerStore<MechSpiderLeg>.NativeClassPtr, "<Step>d__24");
|
|
IL2CPP.il2cpp_runtime_class_init(Il2CppClassPointerStore<MechSpiderLeg._Step_d__24>.NativeClassPtr);
|
|
MechSpiderLeg._Step_d__24.NativeFieldInfoPtr___1__state = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg._Step_d__24>.NativeClassPtr, "<>1__state");
|
|
MechSpiderLeg._Step_d__24.NativeFieldInfoPtr___2__current = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg._Step_d__24>.NativeClassPtr, "<>2__current");
|
|
MechSpiderLeg._Step_d__24.NativeFieldInfoPtr___4__this = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg._Step_d__24>.NativeClassPtr, "<>4__this");
|
|
MechSpiderLeg._Step_d__24.NativeFieldInfoPtr_stepStartPosition = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg._Step_d__24>.NativeClassPtr, "stepStartPosition");
|
|
MechSpiderLeg._Step_d__24.NativeFieldInfoPtr_targetPosition = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MechSpiderLeg._Step_d__24>.NativeClassPtr, "targetPosition");
|
|
MechSpiderLeg._Step_d__24.NativeMethodInfoPtr__ctor_Public_Void_Int32_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<MechSpiderLeg._Step_d__24>.NativeClassPtr, 100672275);
|
|
MechSpiderLeg._Step_d__24.NativeMethodInfoPtr_System_IDisposable_Dispose_Private_Virtual_Final_New_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<MechSpiderLeg._Step_d__24>.NativeClassPtr, 100672276);
|
|
MechSpiderLeg._Step_d__24.NativeMethodInfoPtr_MoveNext_Private_Virtual_Final_New_Boolean_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<MechSpiderLeg._Step_d__24>.NativeClassPtr, 100672277);
|
|
MechSpiderLeg._Step_d__24.NativeMethodInfoPtr_System_Collections_Generic_IEnumerator_System_Object__get_Current_Private_Virtual_Final_New_get_Object_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<MechSpiderLeg._Step_d__24>.NativeClassPtr, 100672278);
|
|
MechSpiderLeg._Step_d__24.NativeMethodInfoPtr_System_Collections_IEnumerator_Reset_Private_Virtual_Final_New_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<MechSpiderLeg._Step_d__24>.NativeClassPtr, 100672279);
|
|
MechSpiderLeg._Step_d__24.NativeMethodInfoPtr_System_Collections_IEnumerator_get_Current_Private_Virtual_Final_New_get_Object_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<MechSpiderLeg._Step_d__24>.NativeClassPtr, 100672280);
|
|
}
|
|
|
|
// Token: 0x060076C9 RID: 30409 RVA: 0x0000A688 File Offset: 0x00008888
|
|
public _Step_d__24(IntPtr pointer)
|
|
: base(pointer)
|
|
{
|
|
}
|
|
|
|
// Token: 0x17002891 RID: 10385
|
|
// (get) Token: 0x060076CA RID: 30410 RVA: 0x001E564C File Offset: 0x001E384C
|
|
// (set) Token: 0x060076CB RID: 30411 RVA: 0x001E5674 File Offset: 0x001E3874
|
|
public unsafe int __1__state
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg._Step_d__24.NativeFieldInfoPtr___1__state);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg._Step_d__24.NativeFieldInfoPtr___1__state)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x17002892 RID: 10386
|
|
// (get) Token: 0x060076CC RID: 30412 RVA: 0x001E5698 File Offset: 0x001E3898
|
|
// (set) Token: 0x060076CD RID: 30413 RVA: 0x001E56CC File Offset: 0x001E38CC
|
|
public unsafe Il2CppSystem.Object __2__current
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg._Step_d__24.NativeFieldInfoPtr___2__current);
|
|
IntPtr intPtr2 = *intPtr;
|
|
return (intPtr2 != 0) ? new Il2CppSystem.Object(intPtr2) : null;
|
|
}
|
|
set
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg._Step_d__24.NativeFieldInfoPtr___2__current), IL2CPP.Il2CppObjectBaseToPtr(value));
|
|
}
|
|
}
|
|
|
|
// Token: 0x17002893 RID: 10387
|
|
// (get) Token: 0x060076CE RID: 30414 RVA: 0x001E56F4 File Offset: 0x001E38F4
|
|
// (set) Token: 0x060076CF RID: 30415 RVA: 0x001E5728 File Offset: 0x001E3928
|
|
public unsafe MechSpiderLeg __4__this
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg._Step_d__24.NativeFieldInfoPtr___4__this);
|
|
IntPtr intPtr2 = *intPtr;
|
|
return (intPtr2 != 0) ? new MechSpiderLeg(intPtr2) : null;
|
|
}
|
|
set
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg._Step_d__24.NativeFieldInfoPtr___4__this), IL2CPP.Il2CppObjectBaseToPtr(value));
|
|
}
|
|
}
|
|
|
|
// Token: 0x17002894 RID: 10388
|
|
// (get) Token: 0x060076D0 RID: 30416 RVA: 0x001E5750 File Offset: 0x001E3950
|
|
// (set) Token: 0x060076D1 RID: 30417 RVA: 0x001E5778 File Offset: 0x001E3978
|
|
public unsafe Vector3 stepStartPosition
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg._Step_d__24.NativeFieldInfoPtr_stepStartPosition);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg._Step_d__24.NativeFieldInfoPtr_stepStartPosition)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x17002895 RID: 10389
|
|
// (get) Token: 0x060076D2 RID: 30418 RVA: 0x001E579C File Offset: 0x001E399C
|
|
// (set) Token: 0x060076D3 RID: 30419 RVA: 0x001E57C4 File Offset: 0x001E39C4
|
|
public unsafe Vector3 targetPosition
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg._Step_d__24.NativeFieldInfoPtr_targetPosition);
|
|
return *intPtr;
|
|
}
|
|
set
|
|
{
|
|
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MechSpiderLeg._Step_d__24.NativeFieldInfoPtr_targetPosition)) = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x04004FBF RID: 20415
|
|
private static readonly IntPtr NativeFieldInfoPtr___1__state;
|
|
|
|
// Token: 0x04004FC0 RID: 20416
|
|
private static readonly IntPtr NativeFieldInfoPtr___2__current;
|
|
|
|
// Token: 0x04004FC1 RID: 20417
|
|
private static readonly IntPtr NativeFieldInfoPtr___4__this;
|
|
|
|
// Token: 0x04004FC2 RID: 20418
|
|
private static readonly IntPtr NativeFieldInfoPtr_stepStartPosition;
|
|
|
|
// Token: 0x04004FC3 RID: 20419
|
|
private static readonly IntPtr NativeFieldInfoPtr_targetPosition;
|
|
|
|
// Token: 0x04004FC4 RID: 20420
|
|
private static readonly IntPtr NativeMethodInfoPtr__ctor_Public_Void_Int32_0;
|
|
|
|
// Token: 0x04004FC5 RID: 20421
|
|
private static readonly IntPtr NativeMethodInfoPtr_System_IDisposable_Dispose_Private_Virtual_Final_New_Void_0;
|
|
|
|
// Token: 0x04004FC6 RID: 20422
|
|
private static readonly IntPtr NativeMethodInfoPtr_MoveNext_Private_Virtual_Final_New_Boolean_0;
|
|
|
|
// Token: 0x04004FC7 RID: 20423
|
|
private static readonly IntPtr NativeMethodInfoPtr_System_Collections_Generic_IEnumerator_System_Object__get_Current_Private_Virtual_Final_New_get_Object_0;
|
|
|
|
// Token: 0x04004FC8 RID: 20424
|
|
private static readonly IntPtr NativeMethodInfoPtr_System_Collections_IEnumerator_Reset_Private_Virtual_Final_New_Void_0;
|
|
|
|
// Token: 0x04004FC9 RID: 20425
|
|
private static readonly IntPtr NativeMethodInfoPtr_System_Collections_IEnumerator_get_Current_Private_Virtual_Final_New_get_Object_0;
|
|
}
|
|
}
|
|
}
|