forked from MattRix/UnityDecompiled
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnimator.cs
More file actions
1451 lines (1212 loc) · 41.1 KB
/
Animator.cs
File metadata and controls
1451 lines (1212 loc) · 41.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using UnityEngine.Experimental.Director;
using UnityEngine.Internal;
using UnityEngine.Scripting;
namespace UnityEngine
{
[UsedByNativeCode]
public sealed class Animator : Behaviour
{
public extern bool isOptimizable
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
public extern bool isHuman
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
public extern bool hasRootMotion
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
internal extern bool isRootPositionOrRotationControlledByCurves
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
public extern float humanScale
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
public extern bool isInitialized
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
public Vector3 deltaPosition
{
get
{
Vector3 result;
this.INTERNAL_get_deltaPosition(out result);
return result;
}
}
public Quaternion deltaRotation
{
get
{
Quaternion result;
this.INTERNAL_get_deltaRotation(out result);
return result;
}
}
public Vector3 velocity
{
get
{
Vector3 result;
this.INTERNAL_get_velocity(out result);
return result;
}
}
public Vector3 angularVelocity
{
get
{
Vector3 result;
this.INTERNAL_get_angularVelocity(out result);
return result;
}
}
public Vector3 rootPosition
{
get
{
Vector3 result;
this.INTERNAL_get_rootPosition(out result);
return result;
}
set
{
this.INTERNAL_set_rootPosition(ref value);
}
}
public Quaternion rootRotation
{
get
{
Quaternion result;
this.INTERNAL_get_rootRotation(out result);
return result;
}
set
{
this.INTERNAL_set_rootRotation(ref value);
}
}
public extern bool applyRootMotion
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
public extern bool linearVelocityBlending
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
[Obsolete("Use Animator.updateMode instead")]
public bool animatePhysics
{
get
{
return this.updateMode == AnimatorUpdateMode.AnimatePhysics;
}
set
{
this.updateMode = ((!value) ? AnimatorUpdateMode.Normal : AnimatorUpdateMode.AnimatePhysics);
}
}
public extern AnimatorUpdateMode updateMode
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
public extern bool hasTransformHierarchy
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
internal extern bool allowConstantClipSamplingOptimization
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
public extern float gravityWeight
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
public Vector3 bodyPosition
{
get
{
this.CheckIfInIKPass();
return this.GetBodyPositionInternal();
}
set
{
this.CheckIfInIKPass();
this.SetBodyPositionInternal(value);
}
}
public Quaternion bodyRotation
{
get
{
this.CheckIfInIKPass();
return this.GetBodyRotationInternal();
}
set
{
this.CheckIfInIKPass();
this.SetBodyRotationInternal(value);
}
}
public extern bool stabilizeFeet
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
public extern int layerCount
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
public extern AnimatorControllerParameter[] parameters
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
public extern int parameterCount
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
public extern float feetPivotActive
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
public extern float pivotWeight
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
public Vector3 pivotPosition
{
get
{
Vector3 result;
this.INTERNAL_get_pivotPosition(out result);
return result;
}
}
public extern bool isMatchingTarget
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
public extern float speed
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
public Vector3 targetPosition
{
get
{
Vector3 result;
this.INTERNAL_get_targetPosition(out result);
return result;
}
}
public Quaternion targetRotation
{
get
{
Quaternion result;
this.INTERNAL_get_targetRotation(out result);
return result;
}
}
internal extern Transform avatarRoot
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
public extern AnimatorCullingMode cullingMode
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
public extern float playbackTime
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
public extern float recorderStartTime
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
public extern float recorderStopTime
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
public extern AnimatorRecorderMode recorderMode
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
public extern RuntimeAnimatorController runtimeAnimatorController
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
public extern bool hasBoundPlayables
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
public extern Avatar avatar
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
public PlayableGraph playableGraph
{
get
{
PlayableGraph result = default(PlayableGraph);
this.InternalGetCurrentGraph(ref result);
return result;
}
}
public extern bool layersAffectMassCenter
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
public extern float leftFeetBottomHeight
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
public extern float rightFeetBottomHeight
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
internal extern bool supportsOnAnimatorMove
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
public extern bool logWarnings
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
public extern bool fireEvents
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
[EditorBrowsable(EditorBrowsableState.Never), Obsolete("GetCurrentAnimationClipState is obsolete. Use GetCurrentAnimatorClipInfo instead (UnityUpgradable) -> GetCurrentAnimatorClipInfo(*)", true)]
public AnimationInfo[] GetCurrentAnimationClipState(int layerIndex)
{
return null;
}
[EditorBrowsable(EditorBrowsableState.Never), Obsolete("GetNextAnimationClipState is obsolete. Use GetNextAnimatorClipInfo instead (UnityUpgradable) -> GetNextAnimatorClipInfo(*)", true)]
public AnimationInfo[] GetNextAnimationClipState(int layerIndex)
{
return null;
}
public float GetFloat(string name)
{
return this.GetFloatString(name);
}
public float GetFloat(int id)
{
return this.GetFloatID(id);
}
public void SetFloat(string name, float value)
{
this.SetFloatString(name, value);
}
public void SetFloat(string name, float value, float dampTime, float deltaTime)
{
this.SetFloatStringDamp(name, value, dampTime, deltaTime);
}
public void SetFloat(int id, float value)
{
this.SetFloatID(id, value);
}
public void SetFloat(int id, float value, float dampTime, float deltaTime)
{
this.SetFloatIDDamp(id, value, dampTime, deltaTime);
}
public bool GetBool(string name)
{
return this.GetBoolString(name);
}
public bool GetBool(int id)
{
return this.GetBoolID(id);
}
public void SetBool(string name, bool value)
{
this.SetBoolString(name, value);
}
public void SetBool(int id, bool value)
{
this.SetBoolID(id, value);
}
public int GetInteger(string name)
{
return this.GetIntegerString(name);
}
public int GetInteger(int id)
{
return this.GetIntegerID(id);
}
public void SetInteger(string name, int value)
{
this.SetIntegerString(name, value);
}
public void SetInteger(int id, int value)
{
this.SetIntegerID(id, value);
}
public void SetTrigger(string name)
{
this.SetTriggerString(name);
}
public void SetTrigger(int id)
{
this.SetTriggerID(id);
}
public void ResetTrigger(string name)
{
this.ResetTriggerString(name);
}
public void ResetTrigger(int id)
{
this.ResetTriggerID(id);
}
public bool IsParameterControlledByCurve(string name)
{
return this.IsParameterControlledByCurveString(name);
}
public bool IsParameterControlledByCurve(int id)
{
return this.IsParameterControlledByCurveID(id);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_get_deltaPosition(out Vector3 value);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_get_deltaRotation(out Quaternion value);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_get_velocity(out Vector3 value);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_get_angularVelocity(out Vector3 value);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_get_rootPosition(out Vector3 value);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_set_rootPosition(ref Vector3 value);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_get_rootRotation(out Quaternion value);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_set_rootRotation(ref Quaternion value);
internal Vector3 GetBodyPositionInternal()
{
Vector3 result;
Animator.INTERNAL_CALL_GetBodyPositionInternal(this, out result);
return result;
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private static extern void INTERNAL_CALL_GetBodyPositionInternal(Animator self, out Vector3 value);
internal void SetBodyPositionInternal(Vector3 bodyPosition)
{
Animator.INTERNAL_CALL_SetBodyPositionInternal(this, ref bodyPosition);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private static extern void INTERNAL_CALL_SetBodyPositionInternal(Animator self, ref Vector3 bodyPosition);
internal Quaternion GetBodyRotationInternal()
{
Quaternion result;
Animator.INTERNAL_CALL_GetBodyRotationInternal(this, out result);
return result;
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private static extern void INTERNAL_CALL_GetBodyRotationInternal(Animator self, out Quaternion value);
internal void SetBodyRotationInternal(Quaternion bodyRotation)
{
Animator.INTERNAL_CALL_SetBodyRotationInternal(this, ref bodyRotation);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private static extern void INTERNAL_CALL_SetBodyRotationInternal(Animator self, ref Quaternion bodyRotation);
public Vector3 GetIKPosition(AvatarIKGoal goal)
{
this.CheckIfInIKPass();
return this.GetIKPositionInternal(goal);
}
internal Vector3 GetIKPositionInternal(AvatarIKGoal goal)
{
Vector3 result;
Animator.INTERNAL_CALL_GetIKPositionInternal(this, goal, out result);
return result;
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private static extern void INTERNAL_CALL_GetIKPositionInternal(Animator self, AvatarIKGoal goal, out Vector3 value);
public void SetIKPosition(AvatarIKGoal goal, Vector3 goalPosition)
{
this.CheckIfInIKPass();
this.SetIKPositionInternal(goal, goalPosition);
}
internal void SetIKPositionInternal(AvatarIKGoal goal, Vector3 goalPosition)
{
Animator.INTERNAL_CALL_SetIKPositionInternal(this, goal, ref goalPosition);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private static extern void INTERNAL_CALL_SetIKPositionInternal(Animator self, AvatarIKGoal goal, ref Vector3 goalPosition);
public Quaternion GetIKRotation(AvatarIKGoal goal)
{
this.CheckIfInIKPass();
return this.GetIKRotationInternal(goal);
}
internal Quaternion GetIKRotationInternal(AvatarIKGoal goal)
{
Quaternion result;
Animator.INTERNAL_CALL_GetIKRotationInternal(this, goal, out result);
return result;
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private static extern void INTERNAL_CALL_GetIKRotationInternal(Animator self, AvatarIKGoal goal, out Quaternion value);
public void SetIKRotation(AvatarIKGoal goal, Quaternion goalRotation)
{
this.CheckIfInIKPass();
this.SetIKRotationInternal(goal, goalRotation);
}
internal void SetIKRotationInternal(AvatarIKGoal goal, Quaternion goalRotation)
{
Animator.INTERNAL_CALL_SetIKRotationInternal(this, goal, ref goalRotation);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private static extern void INTERNAL_CALL_SetIKRotationInternal(Animator self, AvatarIKGoal goal, ref Quaternion goalRotation);
public float GetIKPositionWeight(AvatarIKGoal goal)
{
this.CheckIfInIKPass();
return this.GetIKPositionWeightInternal(goal);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
internal extern float GetIKPositionWeightInternal(AvatarIKGoal goal);
public void SetIKPositionWeight(AvatarIKGoal goal, float value)
{
this.CheckIfInIKPass();
this.SetIKPositionWeightInternal(goal, value);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
internal extern void SetIKPositionWeightInternal(AvatarIKGoal goal, float value);
public float GetIKRotationWeight(AvatarIKGoal goal)
{
this.CheckIfInIKPass();
return this.GetIKRotationWeightInternal(goal);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
internal extern float GetIKRotationWeightInternal(AvatarIKGoal goal);
public void SetIKRotationWeight(AvatarIKGoal goal, float value)
{
this.CheckIfInIKPass();
this.SetIKRotationWeightInternal(goal, value);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
internal extern void SetIKRotationWeightInternal(AvatarIKGoal goal, float value);
public Vector3 GetIKHintPosition(AvatarIKHint hint)
{
this.CheckIfInIKPass();
return this.GetIKHintPositionInternal(hint);
}
internal Vector3 GetIKHintPositionInternal(AvatarIKHint hint)
{
Vector3 result;
Animator.INTERNAL_CALL_GetIKHintPositionInternal(this, hint, out result);
return result;
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private static extern void INTERNAL_CALL_GetIKHintPositionInternal(Animator self, AvatarIKHint hint, out Vector3 value);
public void SetIKHintPosition(AvatarIKHint hint, Vector3 hintPosition)
{
this.CheckIfInIKPass();
this.SetIKHintPositionInternal(hint, hintPosition);
}
internal void SetIKHintPositionInternal(AvatarIKHint hint, Vector3 hintPosition)
{
Animator.INTERNAL_CALL_SetIKHintPositionInternal(this, hint, ref hintPosition);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private static extern void INTERNAL_CALL_SetIKHintPositionInternal(Animator self, AvatarIKHint hint, ref Vector3 hintPosition);
public float GetIKHintPositionWeight(AvatarIKHint hint)
{
this.CheckIfInIKPass();
return this.GetHintWeightPositionInternal(hint);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
internal extern float GetHintWeightPositionInternal(AvatarIKHint hint);
public void SetIKHintPositionWeight(AvatarIKHint hint, float value)
{
this.CheckIfInIKPass();
this.SetIKHintPositionWeightInternal(hint, value);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
internal extern void SetIKHintPositionWeightInternal(AvatarIKHint hint, float value);
public void SetLookAtPosition(Vector3 lookAtPosition)
{
this.CheckIfInIKPass();
this.SetLookAtPositionInternal(lookAtPosition);
}
internal void SetLookAtPositionInternal(Vector3 lookAtPosition)
{
Animator.INTERNAL_CALL_SetLookAtPositionInternal(this, ref lookAtPosition);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private static extern void INTERNAL_CALL_SetLookAtPositionInternal(Animator self, ref Vector3 lookAtPosition);
[ExcludeFromDocs]
public void SetLookAtWeight(float weight, float bodyWeight, float headWeight, float eyesWeight)
{
float clampWeight = 0.5f;
this.SetLookAtWeight(weight, bodyWeight, headWeight, eyesWeight, clampWeight);
}
[ExcludeFromDocs]
public void SetLookAtWeight(float weight, float bodyWeight, float headWeight)
{
float clampWeight = 0.5f;
float eyesWeight = 0f;
this.SetLookAtWeight(weight, bodyWeight, headWeight, eyesWeight, clampWeight);
}
[ExcludeFromDocs]
public void SetLookAtWeight(float weight, float bodyWeight)
{
float clampWeight = 0.5f;
float eyesWeight = 0f;
float headWeight = 1f;
this.SetLookAtWeight(weight, bodyWeight, headWeight, eyesWeight, clampWeight);
}
[ExcludeFromDocs]
public void SetLookAtWeight(float weight)
{
float clampWeight = 0.5f;
float eyesWeight = 0f;
float headWeight = 1f;
float bodyWeight = 0f;
this.SetLookAtWeight(weight, bodyWeight, headWeight, eyesWeight, clampWeight);
}
public void SetLookAtWeight(float weight, [UnityEngine.Internal.DefaultValue("0.00f")] float bodyWeight, [UnityEngine.Internal.DefaultValue("1.00f")] float headWeight, [UnityEngine.Internal.DefaultValue("0.00f")] float eyesWeight, [UnityEngine.Internal.DefaultValue("0.50f")] float clampWeight)
{
this.CheckIfInIKPass();
this.SetLookAtWeightInternal(weight, bodyWeight, headWeight, eyesWeight, clampWeight);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
internal extern void SetLookAtWeightInternal(float weight, [UnityEngine.Internal.DefaultValue("0.00f")] float bodyWeight, [UnityEngine.Internal.DefaultValue("1.00f")] float headWeight, [UnityEngine.Internal.DefaultValue("0.00f")] float eyesWeight, [UnityEngine.Internal.DefaultValue("0.50f")] float clampWeight);
[ExcludeFromDocs]
internal void SetLookAtWeightInternal(float weight, float bodyWeight, float headWeight, float eyesWeight)
{
float clampWeight = 0.5f;
this.SetLookAtWeightInternal(weight, bodyWeight, headWeight, eyesWeight, clampWeight);
}
[ExcludeFromDocs]
internal void SetLookAtWeightInternal(float weight, float bodyWeight, float headWeight)
{
float clampWeight = 0.5f;
float eyesWeight = 0f;
this.SetLookAtWeightInternal(weight, bodyWeight, headWeight, eyesWeight, clampWeight);
}
[ExcludeFromDocs]
internal void SetLookAtWeightInternal(float weight, float bodyWeight)
{
float clampWeight = 0.5f;
float eyesWeight = 0f;
float headWeight = 1f;
this.SetLookAtWeightInternal(weight, bodyWeight, headWeight, eyesWeight, clampWeight);
}
[ExcludeFromDocs]
internal void SetLookAtWeightInternal(float weight)
{
float clampWeight = 0.5f;
float eyesWeight = 0f;
float headWeight = 1f;
float bodyWeight = 0f;
this.SetLookAtWeightInternal(weight, bodyWeight, headWeight, eyesWeight, clampWeight);
}
public void SetBoneLocalRotation(HumanBodyBones humanBoneId, Quaternion rotation)
{
this.CheckIfInIKPass();
this.SetBoneLocalRotationInternal((int)humanBoneId, rotation);
}
internal void SetBoneLocalRotationInternal(int humanBoneId, Quaternion rotation)
{
Animator.INTERNAL_CALL_SetBoneLocalRotationInternal(this, humanBoneId, ref rotation);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private static extern void INTERNAL_CALL_SetBoneLocalRotationInternal(Animator self, int humanBoneId, ref Quaternion rotation);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
internal extern ScriptableObject GetBehaviour(Type type);
public T GetBehaviour<T>() where T : StateMachineBehaviour
{
return this.GetBehaviour(typeof(T)) as T;
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
internal extern ScriptableObject[] GetBehaviours(Type type);
internal static T[] ConvertStateMachineBehaviour<T>(ScriptableObject[] rawObjects) where T : StateMachineBehaviour
{
T[] result;
if (rawObjects == null)
{
result = null;
}
else
{
T[] array = new T[rawObjects.Length];
for (int i = 0; i < array.Length; i++)
{
array[i] = (T)((object)rawObjects[i]);
}
result = array;
}
return result;
}
public T[] GetBehaviours<T>() where T : StateMachineBehaviour
{
return Animator.ConvertStateMachineBehaviour<T>(this.GetBehaviours(typeof(T)));
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern string GetLayerName(int layerIndex);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern int GetLayerIndex(string layerName);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern float GetLayerWeight(int layerIndex);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern void SetLayerWeight(int layerIndex, float weight);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern AnimatorStateInfo GetCurrentAnimatorStateInfo(int layerIndex);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern AnimatorStateInfo GetNextAnimatorStateInfo(int layerIndex);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern AnimatorTransitionInfo GetAnimatorTransitionInfo(int layerIndex);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern int GetCurrentAnimatorClipInfoCount(int layerIndex);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern AnimatorClipInfo[] GetCurrentAnimatorClipInfo(int layerIndex);
public void GetCurrentAnimatorClipInfo(int layerIndex, List<AnimatorClipInfo> clips)
{
if (clips == null)
{
throw new ArgumentNullException("clips");
}
this.GetAnimatorClipInfoInternal(layerIndex, true, clips);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void GetAnimatorClipInfoInternal(int layerIndex, bool isCurrent, object clips);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern int GetNextAnimatorClipInfoCount(int layerIndex);
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern AnimatorClipInfo[] GetNextAnimatorClipInfo(int layerIndex);
public void GetNextAnimatorClipInfo(int layerIndex, List<AnimatorClipInfo> clips)
{
if (clips == null)