-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommon.Animancer.cs
77 lines (67 loc) · 2.41 KB
/
Common.Animancer.cs
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
using System;
#if VIRTUESKY_ANIMANCER
using Animancer;
namespace VirtueSky.Misc
{
public static partial class Common
{
public static AnimancerComponent PlayClip(this AnimancerComponent animancerComponent, ClipTransition clip,
Action _endAnim = null, float _durationFade = .2f, bool isCheckPlayingClip = true,
FadeMode mode = default)
{
if (isCheckPlayingClip)
{
if (!animancerComponent.IsPlaying(clip))
{
Handle();
}
}
else
{
Handle();
}
void Handle()
{
var state = animancerComponent.Play(clip, clip.Clip.length * _durationFade, mode);
if (_endAnim != null)
{
state.Events.OnEnd += OnEndAnim;
void OnEndAnim()
{
state.Events.OnEnd -= OnEndAnim;
_endAnim?.Invoke();
}
}
}
return animancerComponent;
}
// Freeze a single animation on its current frame:
public static AnimancerComponent PauseClip(this AnimancerComponent animancerComponent, ClipTransition clip)
{
animancerComponent.States[clip].IsPlaying = false;
return animancerComponent;
}
// Freeze all animations on their current frame:
public static AnimancerComponent PauseAll(this AnimancerComponent animancerComponent)
{
animancerComponent.Playable.PauseGraph();
return animancerComponent;
}
// Stop a single animation from affecting the character and rewind it to the start:
public static AnimancerComponent StopClip(this AnimancerComponent animancerComponent, ClipTransition clip)
{
animancerComponent.Stop(clip);
// Or you can call it on the state directly:
var state = animancerComponent.States[clip];
state.Stop();
return animancerComponent;
}
// Stop all animations from affecting the character and rewind them to the start:
public static AnimancerComponent StopAll(this AnimancerComponent animancerComponent)
{
animancerComponent.Stop();
return animancerComponent;
}
}
}
#endif