mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-06 07:14:55 +08:00
Merge branch 'origin/master'
This commit is contained in:
commit
a71f9f4f75
@ -47,8 +47,8 @@ namespace Spine {
|
||||
public delegate void EventDelegate(AnimationState state, int trackIndex, Event e);
|
||||
public EventDelegate Event;
|
||||
|
||||
public delegate void CompleteDelete(AnimationState state, int trackIndex, int loopCount);
|
||||
public CompleteDelete Complete;
|
||||
public delegate void CompleteDelegate(AnimationState state, int trackIndex, int loopCount);
|
||||
public CompleteDelegate Complete;
|
||||
|
||||
public AnimationState (AnimationStateData data) {
|
||||
if (data == null) throw new ArgumentNullException("data cannot be null.");
|
||||
@ -265,7 +265,7 @@ namespace Spine {
|
||||
public AnimationState.StartEndDelegate Start;
|
||||
public AnimationState.StartEndDelegate End;
|
||||
public AnimationState.EventDelegate Event;
|
||||
public AnimationState.CompleteDelete Complete;
|
||||
public AnimationState.CompleteDelegate Complete;
|
||||
|
||||
internal void OnStart (AnimationState state, int index) {
|
||||
if (Start != null) Start(state, index);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user