9 using System.Collections;
10 using System.Collections.Generic;
38 bool wasDeactivated =
false;
44 #if UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_4_7 || UNITY_4_8 || UNITY_4_9
45 if (!
sprite.gameObject.activeInHierarchy)
47 wasDeactivated =
true;
48 sprite.gameObject.SetActive(
true);
51 if (!
sprite.gameObject.active)
53 wasDeactivated =
true;
54 sprite.gameObject.active =
true;
61 Debug.LogError(
"SuperSprite error: No animation by the name of \"" +
animName +
"\" was found on sprite \"" + sprite.name +
"\". Please verify the spelling and capitalization of the name, including any extra spaces, etc.");
64 #if UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_4_7 || UNITY_4_8 || UNITY_4_9
65 sprite.gameObject.SetActive(
false);
67 sprite.gameObject.active =
false;
78 sprite.PlayAnim(anim);
88 sprite.PlayAnimInReverse(anim);
101 [System.Serializable]
189 protected int curAnim = 0;
190 protected int stepDir = 1;
191 protected int numLoops = 0;
192 protected bool isRunning;
193 AnimCompletedDelegate endDelegate;
201 List<SuperSpriteAnimElement> anims =
new List<SuperSpriteAnimElement>();
203 for (
int i = 0; i < spriteAnims.Length; ++i)
214 if (frameDel != null)
215 spriteAnims[i].sprite.SetAnimFrameDelegate(frameDel);
226 for (
int i = 0; i < spriteAnims.Length; ++i)
229 spriteAnims[i].sprite.SetAnimFrameDelegate(frameDel);
236 if ((curAnim + stepDir) >=
spriteAnims.Length || (curAnim + stepDir) < 0)
265 sp.SetAnimCompleteDelegate(null);
268 if (endDelegate != null)
287 HideSprite(sp,
true);
290 sp.SetAnimCompleteDelegate(null);
301 sp.SetAnimCompleteDelegate(null);
302 HideSprite(sp,
true);
308 spriteAnims[curAnim].sprite.SetAnimCompleteDelegate(AnimFinished);
328 for (
int i = 1; i < spriteAnims.Length; ++i)
345 spriteAnims[curAnim].sprite.SetAnimCompleteDelegate(AnimFinished);
360 spriteAnims[curAnim].sprite.SetAnimCompleteDelegate(null);
386 get {
return isRunning; }
432 protected void HideSprite(
SpriteBase sp,
bool tf)
436 #if UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_4_7 || UNITY_4_8 || UNITY_4_9
437 sp.gameObject.SetActive(!tf);
440 sp.gameObject.SetActiveRecursively(!tf);
442 sp.gameObject.active = !tf;
454 for (
int i = 0; i < spriteAnims.Length; ++i)
472 [System.Serializable]
503 protected bool animating;
505 protected AnimCompleteDelegate animCompleteDelegate;
507 protected SpriteBase.AnimFrameDelegate animFrameDelegate;
509 protected bool m_started =
false;
520 for (
int i = 0; i < animations.Length; ++i)
523 animations[i].Init(i, AnimFinished, animFrameDelegate);
570 for (
int i = 0; i < animations.Length; ++i)
585 if (curAnim != anim | !animating)
598 else if (curAnim.
index != index || !animating)
611 else if (curAnim.
name != name || !animating)
686 return curAnim.IsHidden();
711 return curAnim.CurrentSprite;
735 for (
int i = 0; i < animations.Length; ++i)
756 if (animCompleteDelegate != null)
757 animCompleteDelegate(
this);
764 case SuperSpriteAnim.ANIM_END_ACTION.Play_Default_Anim:
767 case SuperSpriteAnim.ANIM_END_ACTION.Deactivate:
768 #if UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_4_7 || UNITY_4_8 || UNITY_4_9
769 gameObject.SetActive(
false);
771 gameObject.SetActiveRecursively(
false);
774 case SuperSpriteAnim.ANIM_END_ACTION.Destroy:
775 for (
int i = 0; i < animations.Length; ++i)
794 animCompleteDelegate = del;
803 animFrameDelegate = del;
805 for (
int i = 0; i < animations.Length; ++i)
807 animations[i].SetAnimFrameDelegate(animFrameDelegate);
bool IsAnimating()
Returns whether an animation is playing.
void SetAnimCompleteDelegate(AnimCompleteDelegate del)
Sets the delegate to be called upon animation completion.
SpriteRoot CurrentSprite
Returns a reference to the sprite that is currently showing for the current animation, if any.
void Play()
Starts the animation to playing.
void Pause()
Pauses the animation.
void PlayAnim(string anim)
Plays the specified SuperSprite animation.
AutoSpriteBase sprite
The reference to the sprite containing the animation to be played.
void Hide(bool tf)
Hides the sprite of the current animation.
SuperSpriteAnim GetAnim(string name)
Returns the SuperSpriteAnim with the specified name.
int index
Index of this animation in the SuperSprite's list
int loopCycles
How many times to loop the animation, IN ADDITION to the initial play-through. 0 indicates to place t...
void StopAnim()
Stops the current animation from playing and resets it to the beginning for playing again...
Destroys the SuperSprite when the animation ends.
void DoAnim(int index)
Plays the specified SuperSprite animation, but only if it isn't playing already.
Do nothing when the animation ends.
void DoAnim(SuperSpriteAnim anim)
Plays the specified SuperSprite animation, but only if it isn't playing already.
bool playDefaultAnimOnStart
Whether or not to play the default animation when the object is started.
SuperSpriteAnimElement[] spriteAnims
The actual sprite animations to use.
SuperSpriteAnim GetCurAnim()
void UnpauseAnim()
Resumes an animation from where it left off previously.
bool IsHidden()
Returns whether the current sprite in this animation is hidden:
void PlayInReverse()
Convenience method that plays the associated sprite's animation in reverse:
int defaultAnim
The default animation.
Deactivate the SuperSprite when the animation ends (sets the GameObject's .active property to false)...
void Stop()
Stops the animation playing.
void Delete()
Calls Delete() on each constituent sprite.
void PlayAnim(int index)
Plays the specified SuperSprite animation.
SpriteBase CurrentSprite
Returns a reference to the sprite currently showing for this animation. Returns null if no sprite is ...
ANIM_END_ACTION onAnimEnd
What the SuperSprite should do when the animation is done playing.
SuperSpriteAnim GetAnim(int index)
Returns the SuperSpriteAnim at the specified index.
bool pingPong
Reverse the play direction when the end of the animation is reached? (Ping-pong) If true...
string name
Name of the animation.
SuperSpriteAnim[] animations
The animations that comprise this SuperSprite.
bool deactivateNonPlaying
When set to true, non-playing sprites' GameObjects will be deactivated and not merely hidden...
void PauseAnim()
Pauses the currently playing animation.
The root class of all sprites. Does not assume any animation capabilities or atlas packing...
Play the default animation when the animation ends.
bool deactivateRecursively
When set to true, non-playing sprites' GameObjecs will be deactivated recursively. NOTE: Only has effect if deactivateNonPlaying is set to true.
void SetAnimFrameDelegate(SpriteBase.AnimFrameDelegate del)
Sets the delegate to be called each frame of animation.
void Unpause()
Unpauses the animation.
delegate void AnimFrameDelegate(SpriteBase sprite, int frame)
bool IsRunning
Tells whether the animation is running.
void PlayAnim(SuperSpriteAnim anim)
Plays the specified SuperSprite animation.
string animName
The name of the animation to play.
void Reset()
Resets the animation to the beginning.
void Play()
Convenience method that plays the associated sprite's animation.
bool IsHidden()
Returns whether the SuperSprite is hidden.
void Hide(bool tf)
Hides the SuperSprite.
void DoAnim(string name)
Plays the specified SuperSprite animation, but only if it isn't playing already.
delegate void AnimCompleteDelegate(SuperSprite sprite)