三国卡牌客户端基础资源仓库
hch
2025-09-12 a0935e244cf12d62f33d4fadd04df716c60e7ae6
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
/******************************************************************************
 * Spine Runtimes License Agreement
 * Last updated July 28, 2023. Replaces all prior versions.
 *
 * Copyright (c) 2013-2023, Esoteric Software LLC
 *
 * Integration of the Spine Runtimes into software or otherwise creating
 * derivative works of the Spine Runtimes is permitted under the terms and
 * conditions of Section 2 of the Spine Editor License Agreement:
 * http://esotericsoftware.com/spine-editor-license
 *
 * Otherwise, it is permitted to integrate the Spine Runtimes into software or
 * otherwise create derivative works of the Spine Runtimes (collectively,
 * "Products"), provided that each user of the Products must obtain their own
 * Spine Editor license and redistribution of the Products in any form must
 * include this license and copyright notice.
 *
 * THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
 * BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THE
 * SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *****************************************************************************/
 
#if UNITY_2018_3 || UNITY_2019 || UNITY_2018_3_OR_NEWER
#define NEW_PREFAB_SYSTEM
#endif
 
using UnityEngine;
 
namespace Spine.Unity {
 
#if NEW_PREFAB_SYSTEM
    [ExecuteAlways]
#else
    [ExecuteInEditMode]
#endif
    [AddComponentMenu("Spine/SkeletonAnimation")]
    [HelpURL("http://esotericsoftware.com/spine-unity#SkeletonAnimation-Component")]
    public class SkeletonAnimation : SkeletonRenderer, ISkeletonAnimation, IAnimationStateComponent {
 
        #region IAnimationStateComponent
        /// <summary>
        /// This is the Spine.AnimationState object of this SkeletonAnimation. You can control animations through it.
        /// Note that this object, like .skeleton, is not guaranteed to exist in Awake. Do all accesses and caching to it in Start</summary>
        public Spine.AnimationState state;
        /// <summary>
        /// This is the Spine.AnimationState object of this SkeletonAnimation. You can control animations through it.
        /// Note that this object, like .skeleton, is not guaranteed to exist in Awake. Do all accesses and caching to it in Start</summary>
        public Spine.AnimationState AnimationState {
            get {
                Initialize(false);
                return this.state;
            }
        }
        private bool wasUpdatedAfterInit = true;
        #endregion
 
        #region Bone and Initialization Callbacks ISkeletonAnimation
        protected event ISkeletonAnimationDelegate _OnAnimationRebuild;
        protected event UpdateBonesDelegate _BeforeApply;
        protected event UpdateBonesDelegate _UpdateLocal;
        protected event UpdateBonesDelegate _UpdateWorld;
        protected event UpdateBonesDelegate _UpdateComplete;
 
        /// <summary>OnAnimationRebuild is raised after the SkeletonAnimation component is successfully initialized.</summary>
        public event ISkeletonAnimationDelegate OnAnimationRebuild { add { _OnAnimationRebuild += value; } remove { _OnAnimationRebuild -= value; } }
 
        /// <summary>
        /// Occurs before the animations are applied.
        /// Use this callback when you want to change the skeleton state before animations are applied on top.
        /// </summary>
        public event UpdateBonesDelegate BeforeApply { add { _BeforeApply += value; } remove { _BeforeApply -= value; } }
 
        /// <summary>
        /// Occurs after the animations are applied and before world space values are resolved.
        /// Use this callback when you want to set bone local values.
        /// </summary>
        public event UpdateBonesDelegate UpdateLocal { add { _UpdateLocal += value; } remove { _UpdateLocal -= value; } }
 
        /// <summary>
        /// Occurs after the Skeleton's bone world space values are resolved (including all constraints).
        /// Using this callback will cause the world space values to be solved an extra time.
        /// Use this callback if want to use bone world space values, and also set bone local values.
        /// </summary>
        public event UpdateBonesDelegate UpdateWorld { add { _UpdateWorld += value; } remove { _UpdateWorld -= value; } }
 
        /// <summary>
        /// Occurs after the Skeleton's bone world space values are resolved (including all constraints).
        /// Use this callback if you want to use bone world space values, but don't intend to modify bone local values.
        /// This callback can also be used when setting world position and the bone matrix.</summary>
        public event UpdateBonesDelegate UpdateComplete { add { _UpdateComplete += value; } remove { _UpdateComplete -= value; } }
 
        [SerializeField] protected UpdateTiming updateTiming = UpdateTiming.InUpdate;
        public UpdateTiming UpdateTiming { get { return updateTiming; } set { updateTiming = value; } }
 
        /// <summary>If enabled, AnimationState uses unscaled game time
        /// (<c>Time.unscaledDeltaTime</c> instead of normal game time(<c>Time.deltaTime</c>),
        /// running animations independent of e.g. game pause (<c>Time.timeScale</c>).
        /// Instance SkeletonAnimation.timeScale will still be applied.</summary>
        [SerializeField] protected bool unscaledTime;
        public bool UnscaledTime { get { return unscaledTime; } set { unscaledTime = value; } }
        #endregion
 
        #region Serialized state and Beginner API
        [SerializeField]
        [SpineAnimation]
        private string _animationName;
 
        /// <summary>
        /// Setting this property sets the animation of the skeleton. If invalid, it will store the animation name for the next time the skeleton is properly initialized.
        /// Getting this property gets the name of the currently playing animation. If invalid, it will return the last stored animation name set through this property.</summary>
        public string AnimationName {
            get {
                if (!valid) {
                    return _animationName;
                } else {
                    TrackEntry entry = state.GetCurrent(0);
                    return entry == null ? null : entry.Animation.Name;
                }
            }
            set {
                Initialize(false);
                if (_animationName == value) {
                    TrackEntry entry = state.GetCurrent(0);
                    if (entry != null && entry.Loop == loop)
                        return;
                }
                _animationName = value;
 
                if (string.IsNullOrEmpty(value)) {
                    state.ClearTrack(0);
                } else {
                    Spine.Animation animationObject = skeletonDataAsset.GetSkeletonData(false).FindAnimation(value);
                    if (animationObject != null)
                        state.SetAnimation(0, animationObject, loop);
                }
            }
        }
 
        /// <summary>Whether or not <see cref="AnimationName"/> should loop. This only applies to the initial animation specified in the inspector, or any subsequent Animations played through .AnimationName. Animations set through state.SetAnimation are unaffected.</summary>
        public bool loop;
 
        /// <summary>
        /// The rate at which animations progress over time. 1 means 100%. 0.5 means 50%.</summary>
        /// <remarks>AnimationState and TrackEntry also have their own timeScale. These are combined multiplicatively.</remarks>
        public float timeScale = 1;
        #endregion
 
        #region Runtime Instantiation
        /// <summary>Adds and prepares a SkeletonAnimation component to a GameObject at runtime.</summary>
        /// <returns>The newly instantiated SkeletonAnimation</returns>
        public static SkeletonAnimation AddToGameObject (GameObject gameObject, SkeletonDataAsset skeletonDataAsset,
            bool quiet = false) {
            return SkeletonRenderer.AddSpineComponent<SkeletonAnimation>(gameObject, skeletonDataAsset, quiet);
        }
 
        /// <summary>Instantiates a new UnityEngine.GameObject and adds a prepared SkeletonAnimation component to it.</summary>
        /// <returns>The newly instantiated SkeletonAnimation component.</returns>
        public static SkeletonAnimation NewSkeletonAnimationGameObject (SkeletonDataAsset skeletonDataAsset,
            bool quiet = false) {
            return SkeletonRenderer.NewSpineGameObject<SkeletonAnimation>(skeletonDataAsset, quiet);
        }
        #endregion
 
        /// <summary>
        /// Clears the previously generated mesh, resets the skeleton's pose, and clears all previously active animations.</summary>
        public override void ClearState () {
            base.ClearState();
            if (state != null) state.ClearTracks();
        }
 
        /// <summary>
        /// Initialize this component. Attempts to load the SkeletonData and creates the internal Spine objects and buffers.</summary>
        /// <param name="overwrite">If set to <c>true</c>, force overwrite an already initialized object.</param>
        public override void Initialize (bool overwrite, bool quiet = false) {
            if (valid && !overwrite)
                return;
#if UNITY_EDITOR
            if (BuildUtilities.IsInSkeletonAssetBuildPreProcessing)
                return;
#endif
            state = null; // prevent applying leftover AnimationState
            base.Initialize(overwrite, quiet);
 
            if (!valid)
                return;
            state = new Spine.AnimationState(skeletonDataAsset.GetAnimationStateData());
            wasUpdatedAfterInit = false;
 
            if (!string.IsNullOrEmpty(_animationName)) {
                Spine.Animation animationObject = skeletonDataAsset.GetSkeletonData(false).FindAnimation(_animationName);
                if (animationObject != null) {
                    state.SetAnimation(0, animationObject, loop);
#if UNITY_EDITOR
                    if (!Application.isPlaying)
                        Update(0f);
#endif
                }
            }
 
            if (_OnAnimationRebuild != null)
                _OnAnimationRebuild(this);
        }
 
        virtual protected void Update () {
#if UNITY_EDITOR
            if (!Application.isPlaying) {
                Update(0f);
                return;
            }
#endif
            if (updateTiming != UpdateTiming.InUpdate) return;
            Update(unscaledTime ? Time.unscaledDeltaTime : Time.deltaTime);
        }
 
        virtual protected void FixedUpdate () {
            if (updateTiming != UpdateTiming.InFixedUpdate) return;
            Update(unscaledTime ? Time.unscaledDeltaTime : Time.deltaTime);
        }
 
        /// <summary>Progresses the AnimationState according to the given deltaTime, and applies it to the Skeleton. Use Time.deltaTime to update manually. Use deltaTime 0 to update without progressing the time.</summary>
        public void Update (float deltaTime) {
            if (!valid || state == null)
                return;
 
            wasUpdatedAfterInit = true;
            if (updateMode < UpdateMode.OnlyAnimationStatus)
                return;
            UpdateAnimationStatus(deltaTime);
 
            if (updateMode == UpdateMode.OnlyAnimationStatus)
                return;
            ApplyAnimation();
        }
 
        protected void UpdateAnimationStatus (float deltaTime) {
            deltaTime *= timeScale;
            state.Update(deltaTime);
            skeleton.Update(deltaTime);
 
            ApplyTransformMovementToPhysics();
 
            if (updateMode == UpdateMode.OnlyAnimationStatus) {
                state.ApplyEventTimelinesOnly(skeleton, issueEvents: false);
                return;
            }
        }
 
        public virtual void ApplyAnimation () {
            if (_BeforeApply != null)
                _BeforeApply(this);
 
            if (updateMode != UpdateMode.OnlyEventTimelines)
                state.Apply(skeleton);
            else
                state.ApplyEventTimelinesOnly(skeleton, issueEvents: true);
 
            AfterAnimationApplied();
        }
 
        public void AfterAnimationApplied () {
            if (_UpdateLocal != null)
                _UpdateLocal(this);
 
            if (_UpdateWorld == null) {
                UpdateWorldTransform(Skeleton.Physics.Update);
            } else {
                UpdateWorldTransform(Skeleton.Physics.Pose);
                _UpdateWorld(this);
                UpdateWorldTransform(Skeleton.Physics.Update);
            }
 
            if (_UpdateComplete != null) {
                _UpdateComplete(this);
            }
        }
 
        public override void LateUpdate () {
            if (updateTiming == UpdateTiming.InLateUpdate && valid)
                Update(unscaledTime ? Time.unscaledDeltaTime : Time.deltaTime);
 
            // instantiation can happen from Update() after this component, leading to a missing Update() call.
            if (!wasUpdatedAfterInit) Update(0);
 
            base.LateUpdate();
        }
 
        public override void OnBecameVisible () {
            UpdateMode previousUpdateMode = updateMode;
            updateMode = UpdateMode.FullUpdate;
 
            // OnBecameVisible is called after LateUpdate()
            if (previousUpdateMode != UpdateMode.FullUpdate &&
                previousUpdateMode != UpdateMode.EverythingExceptMesh)
                Update(0);
            if (previousUpdateMode != UpdateMode.FullUpdate)
                LateUpdate();
        }
    }
 
}