using System; using System.Collections.Generic; using System.Runtime.CompilerServices; using UnityEngine.Internal; using UnityEngine.Playables; using UnityEngine.Scripting; namespace UnityEngine { // Token: 0x02000211 RID: 529 [UsedByNativeCode] public sealed class Animator : Behaviour { // Token: 0x1700087D RID: 2173 // (get) Token: 0x06002491 RID: 9361 public extern bool isOptimizable { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x1700087E RID: 2174 // (get) Token: 0x06002492 RID: 9362 public extern bool isHuman { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x1700087F RID: 2175 // (get) Token: 0x06002493 RID: 9363 public extern bool hasRootMotion { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x17000880 RID: 2176 // (get) Token: 0x06002494 RID: 9364 internal extern bool isRootPositionOrRotationControlledByCurves { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x17000881 RID: 2177 // (get) Token: 0x06002495 RID: 9365 public extern float humanScale { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x17000882 RID: 2178 // (get) Token: 0x06002496 RID: 9366 public extern bool isInitialized { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x06002497 RID: 9367 RVA: 0x0002A88C File Offset: 0x00028A8C public float GetFloat(string name) { return this.GetFloatString(name); } // Token: 0x06002498 RID: 9368 RVA: 0x0002A8A8 File Offset: 0x00028AA8 public float GetFloat(int id) { return this.GetFloatID(id); } // Token: 0x06002499 RID: 9369 RVA: 0x0002A8C4 File Offset: 0x00028AC4 public void SetFloat(string name, float value) { this.SetFloatString(name, value); } // Token: 0x0600249A RID: 9370 RVA: 0x0002A8D0 File Offset: 0x00028AD0 public void SetFloat(string name, float value, float dampTime, float deltaTime) { this.SetFloatStringDamp(name, value, dampTime, deltaTime); } // Token: 0x0600249B RID: 9371 RVA: 0x0002A8E0 File Offset: 0x00028AE0 public void SetFloat(int id, float value) { this.SetFloatID(id, value); } // Token: 0x0600249C RID: 9372 RVA: 0x0002A8EC File Offset: 0x00028AEC public void SetFloat(int id, float value, float dampTime, float deltaTime) { this.SetFloatIDDamp(id, value, dampTime, deltaTime); } // Token: 0x0600249D RID: 9373 RVA: 0x0002A8FC File Offset: 0x00028AFC public bool GetBool(string name) { return this.GetBoolString(name); } // Token: 0x0600249E RID: 9374 RVA: 0x0002A918 File Offset: 0x00028B18 public bool GetBool(int id) { return this.GetBoolID(id); } // Token: 0x0600249F RID: 9375 RVA: 0x0002A934 File Offset: 0x00028B34 public void SetBool(string name, bool value) { this.SetBoolString(name, value); } // Token: 0x060024A0 RID: 9376 RVA: 0x0002A940 File Offset: 0x00028B40 public void SetBool(int id, bool value) { this.SetBoolID(id, value); } // Token: 0x060024A1 RID: 9377 RVA: 0x0002A94C File Offset: 0x00028B4C public int GetInteger(string name) { return this.GetIntegerString(name); } // Token: 0x060024A2 RID: 9378 RVA: 0x0002A968 File Offset: 0x00028B68 public int GetInteger(int id) { return this.GetIntegerID(id); } // Token: 0x060024A3 RID: 9379 RVA: 0x0002A984 File Offset: 0x00028B84 public void SetInteger(string name, int value) { this.SetIntegerString(name, value); } // Token: 0x060024A4 RID: 9380 RVA: 0x0002A990 File Offset: 0x00028B90 public void SetInteger(int id, int value) { this.SetIntegerID(id, value); } // Token: 0x060024A5 RID: 9381 RVA: 0x0002A99C File Offset: 0x00028B9C public void SetTrigger(string name) { this.SetTriggerString(name); } // Token: 0x060024A6 RID: 9382 RVA: 0x0002A9A8 File Offset: 0x00028BA8 public void SetTrigger(int id) { this.SetTriggerID(id); } // Token: 0x060024A7 RID: 9383 RVA: 0x0002A9B4 File Offset: 0x00028BB4 public void ResetTrigger(string name) { this.ResetTriggerString(name); } // Token: 0x060024A8 RID: 9384 RVA: 0x0002A9C0 File Offset: 0x00028BC0 public void ResetTrigger(int id) { this.ResetTriggerID(id); } // Token: 0x060024A9 RID: 9385 RVA: 0x0002A9CC File Offset: 0x00028BCC public bool IsParameterControlledByCurve(string name) { return this.IsParameterControlledByCurveString(name); } // Token: 0x060024AA RID: 9386 RVA: 0x0002A9E8 File Offset: 0x00028BE8 public bool IsParameterControlledByCurve(int id) { return this.IsParameterControlledByCurveID(id); } // Token: 0x17000883 RID: 2179 // (get) Token: 0x060024AB RID: 9387 RVA: 0x0002AA04 File Offset: 0x00028C04 public Vector3 deltaPosition { get { Vector3 vector; this.INTERNAL_get_deltaPosition(out vector); return vector; } } // Token: 0x060024AC RID: 9388 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void INTERNAL_get_deltaPosition(out Vector3 value); // Token: 0x17000884 RID: 2180 // (get) Token: 0x060024AD RID: 9389 RVA: 0x0002AA24 File Offset: 0x00028C24 public Quaternion deltaRotation { get { Quaternion quaternion; this.INTERNAL_get_deltaRotation(out quaternion); return quaternion; } } // Token: 0x060024AE RID: 9390 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void INTERNAL_get_deltaRotation(out Quaternion value); // Token: 0x17000885 RID: 2181 // (get) Token: 0x060024AF RID: 9391 RVA: 0x0002AA44 File Offset: 0x00028C44 public Vector3 velocity { get { Vector3 vector; this.INTERNAL_get_velocity(out vector); return vector; } } // Token: 0x060024B0 RID: 9392 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void INTERNAL_get_velocity(out Vector3 value); // Token: 0x17000886 RID: 2182 // (get) Token: 0x060024B1 RID: 9393 RVA: 0x0002AA64 File Offset: 0x00028C64 public Vector3 angularVelocity { get { Vector3 vector; this.INTERNAL_get_angularVelocity(out vector); return vector; } } // Token: 0x060024B2 RID: 9394 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void INTERNAL_get_angularVelocity(out Vector3 value); // Token: 0x17000887 RID: 2183 // (get) Token: 0x060024B3 RID: 9395 RVA: 0x0002AA84 File Offset: 0x00028C84 // (set) Token: 0x060024B4 RID: 9396 RVA: 0x0002AAA4 File Offset: 0x00028CA4 public Vector3 rootPosition { get { Vector3 vector; this.INTERNAL_get_rootPosition(out vector); return vector; } set { this.INTERNAL_set_rootPosition(ref value); } } // Token: 0x060024B5 RID: 9397 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void INTERNAL_get_rootPosition(out Vector3 value); // Token: 0x060024B6 RID: 9398 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void INTERNAL_set_rootPosition(ref Vector3 value); // Token: 0x17000888 RID: 2184 // (get) Token: 0x060024B7 RID: 9399 RVA: 0x0002AAB0 File Offset: 0x00028CB0 // (set) Token: 0x060024B8 RID: 9400 RVA: 0x0002AAD0 File Offset: 0x00028CD0 public Quaternion rootRotation { get { Quaternion quaternion; this.INTERNAL_get_rootRotation(out quaternion); return quaternion; } set { this.INTERNAL_set_rootRotation(ref value); } } // Token: 0x060024B9 RID: 9401 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void INTERNAL_get_rootRotation(out Quaternion value); // Token: 0x060024BA RID: 9402 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void INTERNAL_set_rootRotation(ref Quaternion value); // Token: 0x17000889 RID: 2185 // (get) Token: 0x060024BB RID: 9403 // (set) Token: 0x060024BC RID: 9404 public extern bool applyRootMotion { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] set; } // Token: 0x1700088A RID: 2186 // (get) Token: 0x060024BD RID: 9405 // (set) Token: 0x060024BE RID: 9406 public extern bool linearVelocityBlending { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] set; } // Token: 0x1700088B RID: 2187 // (get) Token: 0x060024BF RID: 9407 RVA: 0x0002AADC File Offset: 0x00028CDC // (set) Token: 0x060024C0 RID: 9408 RVA: 0x0002AAFC File Offset: 0x00028CFC [Obsolete("Use Animator.updateMode instead")] public bool animatePhysics { get { return this.updateMode == AnimatorUpdateMode.AnimatePhysics; } set { this.updateMode = ((!value) ? AnimatorUpdateMode.Normal : AnimatorUpdateMode.AnimatePhysics); } } // Token: 0x1700088C RID: 2188 // (get) Token: 0x060024C1 RID: 9409 // (set) Token: 0x060024C2 RID: 9410 public extern AnimatorUpdateMode updateMode { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] set; } // Token: 0x1700088D RID: 2189 // (get) Token: 0x060024C3 RID: 9411 public extern bool hasTransformHierarchy { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x1700088E RID: 2190 // (get) Token: 0x060024C4 RID: 9412 // (set) Token: 0x060024C5 RID: 9413 internal extern bool allowConstantClipSamplingOptimization { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] set; } // Token: 0x1700088F RID: 2191 // (get) Token: 0x060024C6 RID: 9414 public extern float gravityWeight { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x17000890 RID: 2192 // (get) Token: 0x060024C7 RID: 9415 RVA: 0x0002AB14 File Offset: 0x00028D14 // (set) Token: 0x060024C8 RID: 9416 RVA: 0x0002AB38 File Offset: 0x00028D38 public Vector3 bodyPosition { get { this.CheckIfInIKPass(); return this.GetBodyPositionInternal(); } set { this.CheckIfInIKPass(); this.SetBodyPositionInternal(value); } } // Token: 0x060024C9 RID: 9417 RVA: 0x0002AB48 File Offset: 0x00028D48 internal Vector3 GetBodyPositionInternal() { Vector3 vector; Animator.INTERNAL_CALL_GetBodyPositionInternal(this, out vector); return vector; } // Token: 0x060024CA RID: 9418 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private static extern void INTERNAL_CALL_GetBodyPositionInternal(Animator self, out Vector3 value); // Token: 0x060024CB RID: 9419 RVA: 0x0002AB68 File Offset: 0x00028D68 internal void SetBodyPositionInternal(Vector3 bodyPosition) { Animator.INTERNAL_CALL_SetBodyPositionInternal(this, ref bodyPosition); } // Token: 0x060024CC RID: 9420 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private static extern void INTERNAL_CALL_SetBodyPositionInternal(Animator self, ref Vector3 bodyPosition); // Token: 0x17000891 RID: 2193 // (get) Token: 0x060024CD RID: 9421 RVA: 0x0002AB74 File Offset: 0x00028D74 // (set) Token: 0x060024CE RID: 9422 RVA: 0x0002AB98 File Offset: 0x00028D98 public Quaternion bodyRotation { get { this.CheckIfInIKPass(); return this.GetBodyRotationInternal(); } set { this.CheckIfInIKPass(); this.SetBodyRotationInternal(value); } } // Token: 0x060024CF RID: 9423 RVA: 0x0002ABA8 File Offset: 0x00028DA8 internal Quaternion GetBodyRotationInternal() { Quaternion quaternion; Animator.INTERNAL_CALL_GetBodyRotationInternal(this, out quaternion); return quaternion; } // Token: 0x060024D0 RID: 9424 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private static extern void INTERNAL_CALL_GetBodyRotationInternal(Animator self, out Quaternion value); // Token: 0x060024D1 RID: 9425 RVA: 0x0002ABC8 File Offset: 0x00028DC8 internal void SetBodyRotationInternal(Quaternion bodyRotation) { Animator.INTERNAL_CALL_SetBodyRotationInternal(this, ref bodyRotation); } // Token: 0x060024D2 RID: 9426 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private static extern void INTERNAL_CALL_SetBodyRotationInternal(Animator self, ref Quaternion bodyRotation); // Token: 0x060024D3 RID: 9427 RVA: 0x0002ABD4 File Offset: 0x00028DD4 public Vector3 GetIKPosition(AvatarIKGoal goal) { this.CheckIfInIKPass(); return this.GetIKPositionInternal(goal); } // Token: 0x060024D4 RID: 9428 RVA: 0x0002ABF8 File Offset: 0x00028DF8 internal Vector3 GetIKPositionInternal(AvatarIKGoal goal) { Vector3 vector; Animator.INTERNAL_CALL_GetIKPositionInternal(this, goal, out vector); return vector; } // Token: 0x060024D5 RID: 9429 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private static extern void INTERNAL_CALL_GetIKPositionInternal(Animator self, AvatarIKGoal goal, out Vector3 value); // Token: 0x060024D6 RID: 9430 RVA: 0x0002AC18 File Offset: 0x00028E18 public void SetIKPosition(AvatarIKGoal goal, Vector3 goalPosition) { this.CheckIfInIKPass(); this.SetIKPositionInternal(goal, goalPosition); } // Token: 0x060024D7 RID: 9431 RVA: 0x0002AC2C File Offset: 0x00028E2C internal void SetIKPositionInternal(AvatarIKGoal goal, Vector3 goalPosition) { Animator.INTERNAL_CALL_SetIKPositionInternal(this, goal, ref goalPosition); } // Token: 0x060024D8 RID: 9432 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private static extern void INTERNAL_CALL_SetIKPositionInternal(Animator self, AvatarIKGoal goal, ref Vector3 goalPosition); // Token: 0x060024D9 RID: 9433 RVA: 0x0002AC38 File Offset: 0x00028E38 public Quaternion GetIKRotation(AvatarIKGoal goal) { this.CheckIfInIKPass(); return this.GetIKRotationInternal(goal); } // Token: 0x060024DA RID: 9434 RVA: 0x0002AC5C File Offset: 0x00028E5C internal Quaternion GetIKRotationInternal(AvatarIKGoal goal) { Quaternion quaternion; Animator.INTERNAL_CALL_GetIKRotationInternal(this, goal, out quaternion); return quaternion; } // Token: 0x060024DB RID: 9435 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private static extern void INTERNAL_CALL_GetIKRotationInternal(Animator self, AvatarIKGoal goal, out Quaternion value); // Token: 0x060024DC RID: 9436 RVA: 0x0002AC7C File Offset: 0x00028E7C public void SetIKRotation(AvatarIKGoal goal, Quaternion goalRotation) { this.CheckIfInIKPass(); this.SetIKRotationInternal(goal, goalRotation); } // Token: 0x060024DD RID: 9437 RVA: 0x0002AC90 File Offset: 0x00028E90 internal void SetIKRotationInternal(AvatarIKGoal goal, Quaternion goalRotation) { Animator.INTERNAL_CALL_SetIKRotationInternal(this, goal, ref goalRotation); } // Token: 0x060024DE RID: 9438 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private static extern void INTERNAL_CALL_SetIKRotationInternal(Animator self, AvatarIKGoal goal, ref Quaternion goalRotation); // Token: 0x060024DF RID: 9439 RVA: 0x0002AC9C File Offset: 0x00028E9C public float GetIKPositionWeight(AvatarIKGoal goal) { this.CheckIfInIKPass(); return this.GetIKPositionWeightInternal(goal); } // Token: 0x060024E0 RID: 9440 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] internal extern float GetIKPositionWeightInternal(AvatarIKGoal goal); // Token: 0x060024E1 RID: 9441 RVA: 0x0002ACC0 File Offset: 0x00028EC0 public void SetIKPositionWeight(AvatarIKGoal goal, float value) { this.CheckIfInIKPass(); this.SetIKPositionWeightInternal(goal, value); } // Token: 0x060024E2 RID: 9442 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] internal extern void SetIKPositionWeightInternal(AvatarIKGoal goal, float value); // Token: 0x060024E3 RID: 9443 RVA: 0x0002ACD4 File Offset: 0x00028ED4 public float GetIKRotationWeight(AvatarIKGoal goal) { this.CheckIfInIKPass(); return this.GetIKRotationWeightInternal(goal); } // Token: 0x060024E4 RID: 9444 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] internal extern float GetIKRotationWeightInternal(AvatarIKGoal goal); // Token: 0x060024E5 RID: 9445 RVA: 0x0002ACF8 File Offset: 0x00028EF8 public void SetIKRotationWeight(AvatarIKGoal goal, float value) { this.CheckIfInIKPass(); this.SetIKRotationWeightInternal(goal, value); } // Token: 0x060024E6 RID: 9446 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] internal extern void SetIKRotationWeightInternal(AvatarIKGoal goal, float value); // Token: 0x060024E7 RID: 9447 RVA: 0x0002AD0C File Offset: 0x00028F0C public Vector3 GetIKHintPosition(AvatarIKHint hint) { this.CheckIfInIKPass(); return this.GetIKHintPositionInternal(hint); } // Token: 0x060024E8 RID: 9448 RVA: 0x0002AD30 File Offset: 0x00028F30 internal Vector3 GetIKHintPositionInternal(AvatarIKHint hint) { Vector3 vector; Animator.INTERNAL_CALL_GetIKHintPositionInternal(this, hint, out vector); return vector; } // Token: 0x060024E9 RID: 9449 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private static extern void INTERNAL_CALL_GetIKHintPositionInternal(Animator self, AvatarIKHint hint, out Vector3 value); // Token: 0x060024EA RID: 9450 RVA: 0x0002AD50 File Offset: 0x00028F50 public void SetIKHintPosition(AvatarIKHint hint, Vector3 hintPosition) { this.CheckIfInIKPass(); this.SetIKHintPositionInternal(hint, hintPosition); } // Token: 0x060024EB RID: 9451 RVA: 0x0002AD64 File Offset: 0x00028F64 internal void SetIKHintPositionInternal(AvatarIKHint hint, Vector3 hintPosition) { Animator.INTERNAL_CALL_SetIKHintPositionInternal(this, hint, ref hintPosition); } // Token: 0x060024EC RID: 9452 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private static extern void INTERNAL_CALL_SetIKHintPositionInternal(Animator self, AvatarIKHint hint, ref Vector3 hintPosition); // Token: 0x060024ED RID: 9453 RVA: 0x0002AD70 File Offset: 0x00028F70 public float GetIKHintPositionWeight(AvatarIKHint hint) { this.CheckIfInIKPass(); return this.GetHintWeightPositionInternal(hint); } // Token: 0x060024EE RID: 9454 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] internal extern float GetHintWeightPositionInternal(AvatarIKHint hint); // Token: 0x060024EF RID: 9455 RVA: 0x0002AD94 File Offset: 0x00028F94 public void SetIKHintPositionWeight(AvatarIKHint hint, float value) { this.CheckIfInIKPass(); this.SetIKHintPositionWeightInternal(hint, value); } // Token: 0x060024F0 RID: 9456 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] internal extern void SetIKHintPositionWeightInternal(AvatarIKHint hint, float value); // Token: 0x060024F1 RID: 9457 RVA: 0x0002ADA8 File Offset: 0x00028FA8 public void SetLookAtPosition(Vector3 lookAtPosition) { this.CheckIfInIKPass(); this.SetLookAtPositionInternal(lookAtPosition); } // Token: 0x060024F2 RID: 9458 RVA: 0x0002ADB8 File Offset: 0x00028FB8 internal void SetLookAtPositionInternal(Vector3 lookAtPosition) { Animator.INTERNAL_CALL_SetLookAtPositionInternal(this, ref lookAtPosition); } // Token: 0x060024F3 RID: 9459 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private static extern void INTERNAL_CALL_SetLookAtPositionInternal(Animator self, ref Vector3 lookAtPosition); // Token: 0x060024F4 RID: 9460 RVA: 0x0002ADC4 File Offset: 0x00028FC4 [ExcludeFromDocs] public void SetLookAtWeight(float weight, float bodyWeight, float headWeight, float eyesWeight) { float num = 0.5f; this.SetLookAtWeight(weight, bodyWeight, headWeight, eyesWeight, num); } // Token: 0x060024F5 RID: 9461 RVA: 0x0002ADE4 File Offset: 0x00028FE4 [ExcludeFromDocs] public void SetLookAtWeight(float weight, float bodyWeight, float headWeight) { float num = 0.5f; float num2 = 0f; this.SetLookAtWeight(weight, bodyWeight, headWeight, num2, num); } // Token: 0x060024F6 RID: 9462 RVA: 0x0002AE0C File Offset: 0x0002900C [ExcludeFromDocs] public void SetLookAtWeight(float weight, float bodyWeight) { float num = 0.5f; float num2 = 0f; float num3 = 1f; this.SetLookAtWeight(weight, bodyWeight, num3, num2, num); } // Token: 0x060024F7 RID: 9463 RVA: 0x0002AE38 File Offset: 0x00029038 [ExcludeFromDocs] public void SetLookAtWeight(float weight) { float num = 0.5f; float num2 = 0f; float num3 = 1f; float num4 = 0f; this.SetLookAtWeight(weight, num4, num3, num2, num); } // Token: 0x060024F8 RID: 9464 RVA: 0x0002AE6C File Offset: 0x0002906C public void SetLookAtWeight(float weight, [DefaultValue("0.00f")] float bodyWeight, [DefaultValue("1.00f")] float headWeight, [DefaultValue("0.00f")] float eyesWeight, [DefaultValue("0.50f")] float clampWeight) { this.CheckIfInIKPass(); this.SetLookAtWeightInternal(weight, bodyWeight, headWeight, eyesWeight, clampWeight); } // Token: 0x060024F9 RID: 9465 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] internal extern void SetLookAtWeightInternal(float weight, [DefaultValue("0.00f")] float bodyWeight, [DefaultValue("1.00f")] float headWeight, [DefaultValue("0.00f")] float eyesWeight, [DefaultValue("0.50f")] float clampWeight); // Token: 0x060024FA RID: 9466 RVA: 0x0002AE84 File Offset: 0x00029084 [ExcludeFromDocs] internal void SetLookAtWeightInternal(float weight, float bodyWeight, float headWeight, float eyesWeight) { float num = 0.5f; this.SetLookAtWeightInternal(weight, bodyWeight, headWeight, eyesWeight, num); } // Token: 0x060024FB RID: 9467 RVA: 0x0002AEA4 File Offset: 0x000290A4 [ExcludeFromDocs] internal void SetLookAtWeightInternal(float weight, float bodyWeight, float headWeight) { float num = 0.5f; float num2 = 0f; this.SetLookAtWeightInternal(weight, bodyWeight, headWeight, num2, num); } // Token: 0x060024FC RID: 9468 RVA: 0x0002AECC File Offset: 0x000290CC [ExcludeFromDocs] internal void SetLookAtWeightInternal(float weight, float bodyWeight) { float num = 0.5f; float num2 = 0f; float num3 = 1f; this.SetLookAtWeightInternal(weight, bodyWeight, num3, num2, num); } // Token: 0x060024FD RID: 9469 RVA: 0x0002AEF8 File Offset: 0x000290F8 [ExcludeFromDocs] internal void SetLookAtWeightInternal(float weight) { float num = 0.5f; float num2 = 0f; float num3 = 1f; float num4 = 0f; this.SetLookAtWeightInternal(weight, num4, num3, num2, num); } // Token: 0x060024FE RID: 9470 RVA: 0x0002AF2C File Offset: 0x0002912C public void SetBoneLocalRotation(HumanBodyBones humanBoneId, Quaternion rotation) { this.CheckIfInIKPass(); this.SetBoneLocalRotationInternal((int)humanBoneId, rotation); } // Token: 0x060024FF RID: 9471 RVA: 0x0002AF40 File Offset: 0x00029140 internal void SetBoneLocalRotationInternal(int humanBoneId, Quaternion rotation) { Animator.INTERNAL_CALL_SetBoneLocalRotationInternal(this, humanBoneId, ref rotation); } // Token: 0x06002500 RID: 9472 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private static extern void INTERNAL_CALL_SetBoneLocalRotationInternal(Animator self, int humanBoneId, ref Quaternion rotation); // Token: 0x06002501 RID: 9473 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] internal extern ScriptableObject GetBehaviour(Type type); // Token: 0x06002502 RID: 9474 RVA: 0x0002AF4C File Offset: 0x0002914C public T GetBehaviour() where T : StateMachineBehaviour { return this.GetBehaviour(typeof(T)) as T; } // Token: 0x06002503 RID: 9475 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] internal extern ScriptableObject[] InternalGetBehaviours(Type type); // Token: 0x06002504 RID: 9476 RVA: 0x0002AF7C File Offset: 0x0002917C internal static T[] ConvertStateMachineBehaviour(ScriptableObject[] rawObjects) where T : StateMachineBehaviour { T[] array; if (rawObjects == null) { array = null; } else { T[] array2 = new T[rawObjects.Length]; for (int i = 0; i < array2.Length; i++) { array2[i] = (T)((object)rawObjects[i]); } array = array2; } return array; } // Token: 0x06002505 RID: 9477 RVA: 0x0002AFCC File Offset: 0x000291CC public T[] GetBehaviours() where T : StateMachineBehaviour { return Animator.ConvertStateMachineBehaviour(this.InternalGetBehaviours(typeof(T))); } // Token: 0x06002506 RID: 9478 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] internal extern StateMachineBehaviour[] InternalGetBehavioursByKey(int fullPathHash, int layerIndex, Type type); // Token: 0x06002507 RID: 9479 RVA: 0x0002AFF8 File Offset: 0x000291F8 public StateMachineBehaviour[] GetBehaviours(int fullPathHash, int layerIndex) { return this.InternalGetBehavioursByKey(fullPathHash, layerIndex, typeof(StateMachineBehaviour)); } // Token: 0x17000892 RID: 2194 // (get) Token: 0x06002508 RID: 9480 // (set) Token: 0x06002509 RID: 9481 public extern bool stabilizeFeet { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] set; } // Token: 0x17000893 RID: 2195 // (get) Token: 0x0600250A RID: 9482 public extern int layerCount { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x0600250B RID: 9483 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern string GetLayerName(int layerIndex); // Token: 0x0600250C RID: 9484 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern int GetLayerIndex(string layerName); // Token: 0x0600250D RID: 9485 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern float GetLayerWeight(int layerIndex); // Token: 0x0600250E RID: 9486 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern void SetLayerWeight(int layerIndex, float weight); // Token: 0x0600250F RID: 9487 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern AnimatorStateInfo GetCurrentAnimatorStateInfo(int layerIndex); // Token: 0x06002510 RID: 9488 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern AnimatorStateInfo GetNextAnimatorStateInfo(int layerIndex); // Token: 0x06002511 RID: 9489 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern AnimatorTransitionInfo GetAnimatorTransitionInfo(int layerIndex); // Token: 0x06002512 RID: 9490 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern int GetCurrentAnimatorClipInfoCount(int layerIndex); // Token: 0x06002513 RID: 9491 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern AnimatorClipInfo[] GetCurrentAnimatorClipInfo(int layerIndex); // Token: 0x06002514 RID: 9492 RVA: 0x0002B020 File Offset: 0x00029220 public void GetCurrentAnimatorClipInfo(int layerIndex, List clips) { if (clips == null) { throw new ArgumentNullException("clips"); } this.GetAnimatorClipInfoInternal(layerIndex, true, clips); } // Token: 0x06002515 RID: 9493 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void GetAnimatorClipInfoInternal(int layerIndex, bool isCurrent, object clips); // Token: 0x06002516 RID: 9494 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern int GetNextAnimatorClipInfoCount(int layerIndex); // Token: 0x06002517 RID: 9495 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern AnimatorClipInfo[] GetNextAnimatorClipInfo(int layerIndex); // Token: 0x06002518 RID: 9496 RVA: 0x0002B040 File Offset: 0x00029240 public void GetNextAnimatorClipInfo(int layerIndex, List clips) { if (clips == null) { throw new ArgumentNullException("clips"); } this.GetAnimatorClipInfoInternal(layerIndex, false, clips); } // Token: 0x06002519 RID: 9497 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern bool IsInTransition(int layerIndex); // Token: 0x17000894 RID: 2196 // (get) Token: 0x0600251A RID: 9498 public extern AnimatorControllerParameter[] parameters { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x17000895 RID: 2197 // (get) Token: 0x0600251B RID: 9499 public extern int parameterCount { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x0600251C RID: 9500 RVA: 0x0002B060 File Offset: 0x00029260 public AnimatorControllerParameter GetParameter(int index) { AnimatorControllerParameter[] parameters = this.parameters; if (index < 0 && index >= this.parameters.Length) { throw new IndexOutOfRangeException("Index must be between 0 and " + this.parameters.Length); } return parameters[index]; } // Token: 0x17000896 RID: 2198 // (get) Token: 0x0600251D RID: 9501 // (set) Token: 0x0600251E RID: 9502 public extern float feetPivotActive { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] set; } // Token: 0x17000897 RID: 2199 // (get) Token: 0x0600251F RID: 9503 public extern float pivotWeight { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x17000898 RID: 2200 // (get) Token: 0x06002520 RID: 9504 RVA: 0x0002B0B4 File Offset: 0x000292B4 public Vector3 pivotPosition { get { Vector3 vector; this.INTERNAL_get_pivotPosition(out vector); return vector; } } // Token: 0x06002521 RID: 9505 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void INTERNAL_get_pivotPosition(out Vector3 value); // Token: 0x06002522 RID: 9506 RVA: 0x0002B0D4 File Offset: 0x000292D4 public void MatchTarget(Vector3 matchPosition, Quaternion matchRotation, AvatarTarget targetBodyPart, MatchTargetWeightMask weightMask, float startNormalizedTime, [DefaultValue("1")] float targetNormalizedTime) { Animator.INTERNAL_CALL_MatchTarget(this, ref matchPosition, ref matchRotation, targetBodyPart, ref weightMask, startNormalizedTime, targetNormalizedTime); } // Token: 0x06002523 RID: 9507 RVA: 0x0002B0E8 File Offset: 0x000292E8 [ExcludeFromDocs] public void MatchTarget(Vector3 matchPosition, Quaternion matchRotation, AvatarTarget targetBodyPart, MatchTargetWeightMask weightMask, float startNormalizedTime) { float num = 1f; Animator.INTERNAL_CALL_MatchTarget(this, ref matchPosition, ref matchRotation, targetBodyPart, ref weightMask, startNormalizedTime, num); } // Token: 0x06002524 RID: 9508 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private static extern void INTERNAL_CALL_MatchTarget(Animator self, ref Vector3 matchPosition, ref Quaternion matchRotation, AvatarTarget targetBodyPart, ref MatchTargetWeightMask weightMask, float startNormalizedTime, float targetNormalizedTime); // Token: 0x06002525 RID: 9509 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern void InterruptMatchTarget([DefaultValue("true")] bool completeMatch); // Token: 0x06002526 RID: 9510 RVA: 0x0002B10C File Offset: 0x0002930C [ExcludeFromDocs] public void InterruptMatchTarget() { bool flag = true; this.InterruptMatchTarget(flag); } // Token: 0x17000899 RID: 2201 // (get) Token: 0x06002527 RID: 9511 public extern bool isMatchingTarget { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x1700089A RID: 2202 // (get) Token: 0x06002528 RID: 9512 // (set) Token: 0x06002529 RID: 9513 public extern float speed { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] set; } // Token: 0x0600252A RID: 9514 RVA: 0x0002B124 File Offset: 0x00029324 [Obsolete("ForceStateNormalizedTime is deprecated. Please use Play or CrossFade instead.")] public void ForceStateNormalizedTime(float normalizedTime) { this.Play(0, 0, normalizedTime); } // Token: 0x0600252B RID: 9515 RVA: 0x0002B130 File Offset: 0x00029330 [ExcludeFromDocs] public void CrossFadeInFixedTime(string stateName, float transitionDuration, int layer) { float num = 0f; this.CrossFadeInFixedTime(stateName, transitionDuration, layer, num); } // Token: 0x0600252C RID: 9516 RVA: 0x0002B150 File Offset: 0x00029350 [ExcludeFromDocs] public void CrossFadeInFixedTime(string stateName, float transitionDuration) { float num = 0f; int num2 = -1; this.CrossFadeInFixedTime(stateName, transitionDuration, num2, num); } // Token: 0x0600252D RID: 9517 RVA: 0x0002B170 File Offset: 0x00029370 public void CrossFadeInFixedTime(string stateName, float transitionDuration, [DefaultValue("-1")] int layer, [DefaultValue("0.0f")] float fixedTime) { this.CrossFadeInFixedTime(Animator.StringToHash(stateName), transitionDuration, layer, fixedTime); } // Token: 0x0600252E RID: 9518 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern void CrossFadeInFixedTime(int stateNameHash, float transitionDuration, [DefaultValue("-1")] int layer, [DefaultValue("0.0f")] float fixedTime); // Token: 0x0600252F RID: 9519 RVA: 0x0002B184 File Offset: 0x00029384 [ExcludeFromDocs] public void CrossFadeInFixedTime(int stateNameHash, float transitionDuration, int layer) { float num = 0f; this.CrossFadeInFixedTime(stateNameHash, transitionDuration, layer, num); } // Token: 0x06002530 RID: 9520 RVA: 0x0002B1A4 File Offset: 0x000293A4 [ExcludeFromDocs] public void CrossFadeInFixedTime(int stateNameHash, float transitionDuration) { float num = 0f; int num2 = -1; this.CrossFadeInFixedTime(stateNameHash, transitionDuration, num2, num); } // Token: 0x06002531 RID: 9521 RVA: 0x0002B1C4 File Offset: 0x000293C4 [ExcludeFromDocs] public void CrossFade(string stateName, float transitionDuration, int layer) { float negativeInfinity = float.NegativeInfinity; this.CrossFade(stateName, transitionDuration, layer, negativeInfinity); } // Token: 0x06002532 RID: 9522 RVA: 0x0002B1E4 File Offset: 0x000293E4 [ExcludeFromDocs] public void CrossFade(string stateName, float transitionDuration) { float negativeInfinity = float.NegativeInfinity; int num = -1; this.CrossFade(stateName, transitionDuration, num, negativeInfinity); } // Token: 0x06002533 RID: 9523 RVA: 0x0002B204 File Offset: 0x00029404 public void CrossFade(string stateName, float transitionDuration, [DefaultValue("-1")] int layer, [DefaultValue("float.NegativeInfinity")] float normalizedTime) { this.CrossFade(Animator.StringToHash(stateName), transitionDuration, layer, normalizedTime); } // Token: 0x06002534 RID: 9524 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern void CrossFade(int stateNameHash, float transitionDuration, [DefaultValue("-1")] int layer, [DefaultValue("float.NegativeInfinity")] float normalizedTime); // Token: 0x06002535 RID: 9525 RVA: 0x0002B218 File Offset: 0x00029418 [ExcludeFromDocs] public void CrossFade(int stateNameHash, float transitionDuration, int layer) { float negativeInfinity = float.NegativeInfinity; this.CrossFade(stateNameHash, transitionDuration, layer, negativeInfinity); } // Token: 0x06002536 RID: 9526 RVA: 0x0002B238 File Offset: 0x00029438 [ExcludeFromDocs] public void CrossFade(int stateNameHash, float transitionDuration) { float negativeInfinity = float.NegativeInfinity; int num = -1; this.CrossFade(stateNameHash, transitionDuration, num, negativeInfinity); } // Token: 0x06002537 RID: 9527 RVA: 0x0002B258 File Offset: 0x00029458 [ExcludeFromDocs] public void PlayInFixedTime(string stateName, int layer) { float negativeInfinity = float.NegativeInfinity; this.PlayInFixedTime(stateName, layer, negativeInfinity); } // Token: 0x06002538 RID: 9528 RVA: 0x0002B278 File Offset: 0x00029478 [ExcludeFromDocs] public void PlayInFixedTime(string stateName) { float negativeInfinity = float.NegativeInfinity; int num = -1; this.PlayInFixedTime(stateName, num, negativeInfinity); } // Token: 0x06002539 RID: 9529 RVA: 0x0002B298 File Offset: 0x00029498 public void PlayInFixedTime(string stateName, [DefaultValue("-1")] int layer, [DefaultValue("float.NegativeInfinity")] float fixedTime) { this.PlayInFixedTime(Animator.StringToHash(stateName), layer, fixedTime); } // Token: 0x0600253A RID: 9530 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern void PlayInFixedTime(int stateNameHash, [DefaultValue("-1")] int layer, [DefaultValue("float.NegativeInfinity")] float fixedTime); // Token: 0x0600253B RID: 9531 RVA: 0x0002B2AC File Offset: 0x000294AC [ExcludeFromDocs] public void PlayInFixedTime(int stateNameHash, int layer) { float negativeInfinity = float.NegativeInfinity; this.PlayInFixedTime(stateNameHash, layer, negativeInfinity); } // Token: 0x0600253C RID: 9532 RVA: 0x0002B2CC File Offset: 0x000294CC [ExcludeFromDocs] public void PlayInFixedTime(int stateNameHash) { float negativeInfinity = float.NegativeInfinity; int num = -1; this.PlayInFixedTime(stateNameHash, num, negativeInfinity); } // Token: 0x0600253D RID: 9533 RVA: 0x0002B2EC File Offset: 0x000294EC [ExcludeFromDocs] public void Play(string stateName, int layer) { float negativeInfinity = float.NegativeInfinity; this.Play(stateName, layer, negativeInfinity); } // Token: 0x0600253E RID: 9534 RVA: 0x0002B30C File Offset: 0x0002950C [ExcludeFromDocs] public void Play(string stateName) { float negativeInfinity = float.NegativeInfinity; int num = -1; this.Play(stateName, num, negativeInfinity); } // Token: 0x0600253F RID: 9535 RVA: 0x0002B32C File Offset: 0x0002952C public void Play(string stateName, [DefaultValue("-1")] int layer, [DefaultValue("float.NegativeInfinity")] float normalizedTime) { this.Play(Animator.StringToHash(stateName), layer, normalizedTime); } // Token: 0x06002540 RID: 9536 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern void Play(int stateNameHash, [DefaultValue("-1")] int layer, [DefaultValue("float.NegativeInfinity")] float normalizedTime); // Token: 0x06002541 RID: 9537 RVA: 0x0002B340 File Offset: 0x00029540 [ExcludeFromDocs] public void Play(int stateNameHash, int layer) { float negativeInfinity = float.NegativeInfinity; this.Play(stateNameHash, layer, negativeInfinity); } // Token: 0x06002542 RID: 9538 RVA: 0x0002B360 File Offset: 0x00029560 [ExcludeFromDocs] public void Play(int stateNameHash) { float negativeInfinity = float.NegativeInfinity; int num = -1; this.Play(stateNameHash, num, negativeInfinity); } // Token: 0x06002543 RID: 9539 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern void SetTarget(AvatarTarget targetIndex, float targetNormalizedTime); // Token: 0x1700089B RID: 2203 // (get) Token: 0x06002544 RID: 9540 RVA: 0x0002B380 File Offset: 0x00029580 public Vector3 targetPosition { get { Vector3 vector; this.INTERNAL_get_targetPosition(out vector); return vector; } } // Token: 0x06002545 RID: 9541 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void INTERNAL_get_targetPosition(out Vector3 value); // Token: 0x1700089C RID: 2204 // (get) Token: 0x06002546 RID: 9542 RVA: 0x0002B3A0 File Offset: 0x000295A0 public Quaternion targetRotation { get { Quaternion quaternion; this.INTERNAL_get_targetRotation(out quaternion); return quaternion; } } // Token: 0x06002547 RID: 9543 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void INTERNAL_get_targetRotation(out Quaternion value); // Token: 0x06002548 RID: 9544 [Obsolete("use mask and layers to control subset of transfroms in a skeleton", true)] [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern bool IsControlled(Transform transform); // Token: 0x06002549 RID: 9545 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] internal extern bool IsBoneTransform(Transform transform); // Token: 0x1700089D RID: 2205 // (get) Token: 0x0600254A RID: 9546 internal extern Transform avatarRoot { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x0600254B RID: 9547 RVA: 0x0002B3C0 File Offset: 0x000295C0 public Transform GetBoneTransform(HumanBodyBones humanBoneId) { return this.GetBoneTransformInternal((int)humanBoneId); } // Token: 0x0600254C RID: 9548 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] internal extern Transform GetBoneTransformInternal(int humanBoneId); // Token: 0x1700089E RID: 2206 // (get) Token: 0x0600254D RID: 9549 // (set) Token: 0x0600254E RID: 9550 public extern AnimatorCullingMode cullingMode { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] set; } // Token: 0x0600254F RID: 9551 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern void StartPlayback(); // Token: 0x06002550 RID: 9552 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern void StopPlayback(); // Token: 0x1700089F RID: 2207 // (get) Token: 0x06002551 RID: 9553 // (set) Token: 0x06002552 RID: 9554 public extern float playbackTime { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] set; } // Token: 0x06002553 RID: 9555 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern void StartRecording(int frameCount); // Token: 0x06002554 RID: 9556 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern void StopRecording(); // Token: 0x170008A0 RID: 2208 // (get) Token: 0x06002555 RID: 9557 // (set) Token: 0x06002556 RID: 9558 public extern float recorderStartTime { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] set; } // Token: 0x170008A1 RID: 2209 // (get) Token: 0x06002557 RID: 9559 // (set) Token: 0x06002558 RID: 9560 public extern float recorderStopTime { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] set; } // Token: 0x170008A2 RID: 2210 // (get) Token: 0x06002559 RID: 9561 public extern AnimatorRecorderMode recorderMode { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x170008A3 RID: 2211 // (get) Token: 0x0600255A RID: 9562 // (set) Token: 0x0600255B RID: 9563 public extern RuntimeAnimatorController runtimeAnimatorController { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] set; } // Token: 0x170008A4 RID: 2212 // (get) Token: 0x0600255C RID: 9564 public extern bool hasBoundPlayables { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x0600255D RID: 9565 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] internal extern void ClearInternalControllerPlayable(); // Token: 0x0600255E RID: 9566 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern bool HasState(int layerIndex, int stateID); // Token: 0x0600255F RID: 9567 [ThreadAndSerializationSafe] [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public static extern int StringToHash(string name); // Token: 0x170008A5 RID: 2213 // (get) Token: 0x06002560 RID: 9568 // (set) Token: 0x06002561 RID: 9569 public extern Avatar avatar { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] set; } // Token: 0x06002562 RID: 9570 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] internal extern string GetStats(); // Token: 0x170008A6 RID: 2214 // (get) Token: 0x06002563 RID: 9571 RVA: 0x0002B3DC File Offset: 0x000295DC public PlayableGraph playableGraph { get { PlayableGraph playableGraph = default(PlayableGraph); this.InternalGetCurrentGraph(ref playableGraph); return playableGraph; } } // Token: 0x06002564 RID: 9572 RVA: 0x0002B404 File Offset: 0x00029604 private void InternalGetCurrentGraph(ref PlayableGraph graph) { Animator.INTERNAL_CALL_InternalGetCurrentGraph(this, ref graph); } // Token: 0x06002565 RID: 9573 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private static extern void INTERNAL_CALL_InternalGetCurrentGraph(Animator self, ref PlayableGraph graph); // Token: 0x06002566 RID: 9574 RVA: 0x0002B410 File Offset: 0x00029610 private void CheckIfInIKPass() { if (this.logWarnings && !this.CheckIfInIKPassInternal()) { Debug.LogWarning("Setting and getting Body Position/Rotation, IK Goals, Lookat and BoneLocalRotation should only be done in OnAnimatorIK or OnStateIK"); } } // Token: 0x06002567 RID: 9575 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern bool CheckIfInIKPassInternal(); // Token: 0x06002568 RID: 9576 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void SetFloatString(string name, float value); // Token: 0x06002569 RID: 9577 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void SetFloatID(int id, float value); // Token: 0x0600256A RID: 9578 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern float GetFloatString(string name); // Token: 0x0600256B RID: 9579 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern float GetFloatID(int id); // Token: 0x0600256C RID: 9580 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void SetBoolString(string name, bool value); // Token: 0x0600256D RID: 9581 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void SetBoolID(int id, bool value); // Token: 0x0600256E RID: 9582 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern bool GetBoolString(string name); // Token: 0x0600256F RID: 9583 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern bool GetBoolID(int id); // Token: 0x06002570 RID: 9584 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void SetIntegerString(string name, int value); // Token: 0x06002571 RID: 9585 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void SetIntegerID(int id, int value); // Token: 0x06002572 RID: 9586 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern int GetIntegerString(string name); // Token: 0x06002573 RID: 9587 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern int GetIntegerID(int id); // Token: 0x06002574 RID: 9588 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void SetTriggerString(string name); // Token: 0x06002575 RID: 9589 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void SetTriggerID(int id); // Token: 0x06002576 RID: 9590 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void ResetTriggerString(string name); // Token: 0x06002577 RID: 9591 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void ResetTriggerID(int id); // Token: 0x06002578 RID: 9592 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern bool IsParameterControlledByCurveString(string name); // Token: 0x06002579 RID: 9593 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern bool IsParameterControlledByCurveID(int id); // Token: 0x0600257A RID: 9594 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void SetFloatStringDamp(string name, float value, float dampTime, float deltaTime); // Token: 0x0600257B RID: 9595 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] private extern void SetFloatIDDamp(int id, float value, float dampTime, float deltaTime); // Token: 0x170008A7 RID: 2215 // (get) Token: 0x0600257C RID: 9596 // (set) Token: 0x0600257D RID: 9597 public extern bool layersAffectMassCenter { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] set; } // Token: 0x170008A8 RID: 2216 // (get) Token: 0x0600257E RID: 9598 public extern float leftFeetBottomHeight { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x170008A9 RID: 2217 // (get) Token: 0x0600257F RID: 9599 public extern float rightFeetBottomHeight { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; } // Token: 0x06002580 RID: 9600 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern void Update(float deltaTime); // Token: 0x06002581 RID: 9601 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern void Rebind(); // Token: 0x06002582 RID: 9602 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] public extern void ApplyBuiltinRootMotion(); // Token: 0x06002583 RID: 9603 [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] internal extern string ResolveHash(int hash); // Token: 0x170008AA RID: 2218 // (get) Token: 0x06002584 RID: 9604 // (set) Token: 0x06002585 RID: 9605 public extern bool logWarnings { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] set; } // Token: 0x170008AB RID: 2219 // (get) Token: 0x06002586 RID: 9606 // (set) Token: 0x06002587 RID: 9607 public extern bool fireEvents { [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] get; [GeneratedByOldBindingsGenerator] [MethodImpl(MethodImplOptions.InternalCall)] set; } // Token: 0x06002588 RID: 9608 RVA: 0x0002B434 File Offset: 0x00029634 [Obsolete("GetVector is deprecated.")] public Vector3 GetVector(string name) { return Vector3.zero; } // Token: 0x06002589 RID: 9609 RVA: 0x0002B450 File Offset: 0x00029650 [Obsolete("GetVector is deprecated.")] public Vector3 GetVector(int id) { return Vector3.zero; } // Token: 0x0600258A RID: 9610 RVA: 0x0002B46C File Offset: 0x0002966C [Obsolete("SetVector is deprecated.")] public void SetVector(string name, Vector3 value) { } // Token: 0x0600258B RID: 9611 RVA: 0x0002B470 File Offset: 0x00029670 [Obsolete("SetVector is deprecated.")] public void SetVector(int id, Vector3 value) { } // Token: 0x0600258C RID: 9612 RVA: 0x0002B474 File Offset: 0x00029674 [Obsolete("GetQuaternion is deprecated.")] public Quaternion GetQuaternion(string name) { return Quaternion.identity; } // Token: 0x0600258D RID: 9613 RVA: 0x0002B490 File Offset: 0x00029690 [Obsolete("GetQuaternion is deprecated.")] public Quaternion GetQuaternion(int id) { return Quaternion.identity; } // Token: 0x0600258E RID: 9614 RVA: 0x0002B4AC File Offset: 0x000296AC [Obsolete("SetQuaternion is deprecated.")] public void SetQuaternion(string name, Quaternion value) { } // Token: 0x0600258F RID: 9615 RVA: 0x0002B4B0 File Offset: 0x000296B0 [Obsolete("SetQuaternion is deprecated.")] public void SetQuaternion(int id, Quaternion value) { } } }