-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommon.SkeletonGraphic.cs
164 lines (145 loc) · 6.48 KB
/
Common.SkeletonGraphic.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
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
using System;
using System.Collections.Generic;
using System.Linq;
#if VIRTUESKY_SKELETON
using Spine;
using Spine.Unity;
using UnityEngine;
using VirtueSky.Core;
namespace VirtueSky.Misc
{
public static partial class Common
{
public static float Duration(this SkeletonGraphic skeletonGraphic, string animationName)
{
var animation =
skeletonGraphic.AnimationState.Data.SkeletonData.Animations.Items.FirstOrDefault(animation =>
animation.Name.Equals(animationName));
if (animation == null) return 0;
return animation.Duration;
}
public static float Duration(this SkeletonGraphic skeletonGraphic, int track = 0)
{
var animation = skeletonGraphic.AnimationState.GetCurrent(track);
if (animation == null) return 0;
return animation.Animation.Duration;
}
public static SkeletonGraphic OnComplete(this SkeletonGraphic skeletonGraphic, Action onComplete,
int trackIndex = 0, MonoBehaviour target = null)
{
App.Delay(target, skeletonGraphic.Duration(trackIndex), () =>
{
if (skeletonGraphic != null)
{
onComplete?.Invoke();
}
});
return skeletonGraphic;
}
public static SkeletonGraphic OnUpdate(this SkeletonGraphic skeletonGraphic, Action<float> onUpdate,
int trackIndex = 0, MonoBehaviour target = null)
{
App.Delay(target, skeletonGraphic.Duration(trackIndex), null, onUpdate);
return skeletonGraphic;
}
public static SkeletonGraphic Play(this SkeletonGraphic skeletonGraphic, string animationName,
bool loop = false, int trackIndex = 0)
{
skeletonGraphic.Clear();
skeletonGraphic.startingAnimation = animationName;
skeletonGraphic.startingLoop = loop;
skeletonGraphic.AnimationState.SetAnimation(trackIndex, animationName, loop);
skeletonGraphic.LateUpdate();
skeletonGraphic.Initialize(true);
return skeletonGraphic;
}
public static SkeletonGraphic PlayOnly(this SkeletonGraphic skeletonGraphic, string animationName,
bool loop = false, int trackIndex = 0)
{
skeletonGraphic.startingAnimation = animationName;
skeletonGraphic.AnimationState.SetAnimation(trackIndex, animationName, loop);
return skeletonGraphic;
}
public static SkeletonGraphic AddAnimation(this SkeletonGraphic skeletonGraphic, int trackIndex,
string animationName, bool loop, float timeDelay = 0f, float mixDuration = 0f)
{
var track = skeletonGraphic.AnimationState.AddAnimation(trackIndex, animationName, loop, timeDelay);
track.MixDuration = mixDuration;
return skeletonGraphic;
}
public static SkeletonGraphic SetSkin(this SkeletonGraphic skeletonGraphic, string skinName)
{
var skin = new Skin("temp");
skin.AddSkin(skeletonGraphic.Skeleton.Data.FindSkin(skinName));
skeletonGraphic.Skeleton.SetSkin(skin);
skeletonGraphic.Skeleton.SetSlotsToSetupPose();
skeletonGraphic.LateUpdate();
skeletonGraphic.AnimationState.Apply(skeletonGraphic.Skeleton);
return skeletonGraphic;
}
public static SkeletonGraphic SetSkin(this SkeletonGraphic skeletonGraphic, List<string> skinNames)
{
var skin = new Skin("temp");
var skeletonData = skeletonGraphic.Skeleton.Data;
foreach (string skinName in skinNames)
{
skin.AddSkin(skeletonData.FindSkin(skinName));
}
skeletonGraphic.initialSkinName = "temp";
skeletonGraphic.Skeleton.SetSkin(skin);
skeletonGraphic.Skeleton.SetSlotsToSetupPose();
skeletonGraphic.LateUpdate();
skeletonGraphic.AnimationState.Apply(skeletonGraphic.Skeleton);
return skeletonGraphic;
}
public static SkeletonGraphic ChangeAttachment(this SkeletonGraphic skeletonGraphic, string slotName,
string attachmentName)
{
var slotIndex = skeletonGraphic.Skeleton.Data.FindSlot(slotName).Index;
var attachment = skeletonGraphic.Skeleton.GetAttachment(slotIndex, attachmentName);
var skin = new Skin("temp");
skin.SetAttachment(slotIndex, slotName, attachment);
skeletonGraphic.Skeleton.SetSkin(skin);
skeletonGraphic.Skeleton.SetSlotsToSetupPose();
skeletonGraphic.LateUpdate();
return skeletonGraphic;
}
public static SkeletonGraphic ChangeAttachment(this SkeletonGraphic skeletonGraphic, string slotName,
List<string> attachmentNames)
{
var slotIndex = skeletonGraphic.Skeleton.Data.FindSlot(slotName).Index;
var skin = new Skin("temp");
foreach (var attachmentName in attachmentNames)
{
var attachment = skeletonGraphic.Skeleton.GetAttachment(slotIndex, attachmentName);
skin.SetAttachment(slotIndex, slotName, attachment);
}
skeletonGraphic.Skeleton.SetSkin(skin);
skeletonGraphic.Skeleton.SetSlotsToSetupPose();
skeletonGraphic.LateUpdate();
return skeletonGraphic;
}
public static SkeletonGraphic MixSkin(this SkeletonGraphic skeletonGraphic, string mixSkinName)
{
Skin skin = new Skin("temp");
skin.AddSkin(skeletonGraphic.Skeleton.Data.FindSkin(mixSkinName));
skeletonGraphic.Skeleton.SetSkin(skin);
skeletonGraphic.Skeleton.SetSlotsToSetupPose();
skeletonGraphic.AnimationState.Apply(skeletonGraphic.Skeleton);
return skeletonGraphic;
}
public static SkeletonGraphic MixSkin(this SkeletonGraphic skeletonGraphic, List<string> mixSkinNames)
{
Skin skin = new Skin("temp");
foreach (var mixSkinName in mixSkinNames)
{
skin.AddSkin(skeletonGraphic.Skeleton.Data.FindSkin(mixSkinName));
}
skeletonGraphic.Skeleton.SetSkin(skin);
skeletonGraphic.Skeleton.SetSlotsToSetupPose();
skeletonGraphic.AnimationState.Apply(skeletonGraphic.Skeleton);
return skeletonGraphic;
}
}
}
#endif