10 using System.Collections;
18 [AddComponentMenu(
"SpriteManager 2/Manual Sprite")]
44 public override Vector2 GetDefaultPixelSize(PathFromGUIDDelegate guid2Path, AssetLoaderDelegate loader)
50 protected override void Awake()
59 for (
int i = 0; i < animations.Length; ++i)
67 protected override void Init()
73 public override void Start()
81 if (Application.isPlaying)
105 public void Setup(
float w,
float h, Vector2 lowerleftPixel, Vector2 pixeldimensions)
107 this.Setup(w, h, lowerleftPixel, pixeldimensions, m_spriteMesh.material);
118 public void Setup(
float w,
float h, Vector2 lowerleftPixel, Vector2 pixeldimensions, Material material)
124 uvsInitialized =
false;
127 ((SpriteMesh)m_spriteMesh).material = material;
133 SetBleedCompensation();
153 sp = (ManualSprite)s;
170 for (
int i = 0; i < animations.Length; ++i)
174 for (
int i = 0; i < animations.Length; ++i)
180 public override void InitUVs()
187 uvRect.xMax = uvRect.x + tempUV.x;
188 uvRect.yMax = uvRect.y + tempUV.y;
190 frameInfo.uvs = uvRect;
211 anim.index = animations.Length - 1;
212 animations[anim.index] = anim;
259 public override bool StepAnim(
float time)
264 timeSinceLastFrame += Mathf.Max(0, time);
267 framesToAdvance = (timeSinceLastFrame / timeBetweenAnimFrames);
270 if (framesToAdvance < 1)
279 while (framesToAdvance >= 1f)
281 if (curAnim.GetNextFrame(ref frameInfo))
283 #if SPRITE_FRAME_DELEGATE
285 if(framesToAdvance >= 1f)
286 if (animFrameDelegate != null)
289 framesToAdvance -= 1f;
290 timeSinceLastFrame -= timeBetweenAnimFrames;
302 case UVAnimation.ANIM_END_ACTION.Do_Nothing:
306 uvRect = frameInfo.uvs;
307 SetBleedCompensation();
314 case UVAnimation.ANIM_END_ACTION.Revert_To_Static:
319 case UVAnimation.ANIM_END_ACTION.Play_Default_Anim:
327 if (animCompleteDelegate != null)
328 animCompleteDelegate(
this);
334 case UVAnimation.ANIM_END_ACTION.Hide:
337 case UVAnimation.ANIM_END_ACTION.Deactivate:
338 #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
339 gameObject.SetActive(
false);
341 gameObject.active =
false;
344 case UVAnimation.ANIM_END_ACTION.Destroy:
352 if (animCompleteDelegate != null)
353 animCompleteDelegate(
this);
367 if (animCompleteDelegate != null)
368 animCompleteDelegate(
this);
388 int curClipNum = curAnim.GetCurClipNum();
389 int curFrame = curClip.GetCurPosition();
390 int multiStepDir = curAnim.StepDirection;
391 int clipStepDir = curClip.StepDirection;
393 curAnim.GetNextFrame(ref nextFrameInfo);
395 Vector2[] uvs2 = m_spriteMesh.uvs2;
396 Rect nextUV = nextFrameInfo.uvs;
397 uvs2[0].x = nextUV.xMin; uvs2[0].y = nextUV.yMax;
398 uvs2[1].x = nextUV.xMin; uvs2[1].y = nextUV.yMin;
399 uvs2[2].x = nextUV.xMax; uvs2[2].y = nextUV.yMin;
400 uvs2[3].x = nextUV.xMax; uvs2[3].y = nextUV.yMax;
403 curAnim.SetCurClipNum(curClipNum);
404 curClip.SetCurrentFrame(curFrame);
405 curAnim.StepDirection = multiStepDir;
406 curClip.StepDirection = clipStepDir;
417 uvRect = frameInfo.uvs;
418 SetBleedCompensation();
431 protected void CallAnimCompleteDelegate()
433 if (animCompleteDelegate != null)
434 animCompleteDelegate(
this);
515 #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
516 if (deleted || !gameObject.activeInHierarchy)
518 if (deleted || !gameObject.active)
525 curAnimIndex = curAnim.index;
532 timeBetweenAnimFrames = 1f / anim.framerate;
536 timeBetweenAnimFrames = 1f;
539 timeSinceLastFrame = timeBetweenAnimFrames;
544 if ((anim.
GetFrameCount() > 1 || anim.onAnimEnd != UVAnimation.ANIM_END_ACTION.Do_Nothing) && anim.
framerate != 0.0f)
564 if (animCompleteDelegate != null)
571 Invoke(
"CallAnimCompleteDelegate", 1f / anim.
framerate);
574 animCompleteDelegate(
this);
592 Debug.LogError(
"ERROR: Animation index " + index +
" is out of bounds!");
608 for (
int i = 0; i < animations.Length; ++i)
617 Debug.LogError(
"ERROR: Animation \"" + name +
"\" not found!");
627 #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
628 if (deleted || !gameObject.activeInHierarchy)
630 if (deleted || !gameObject.active)
638 curAnim.PlayInReverse();
644 timeBetweenAnimFrames = 1f / anim.framerate;
648 timeBetweenAnimFrames = 1f;
651 timeSinceLastFrame = timeBetweenAnimFrames;
655 if ((anim.
GetFrameCount() > 1 || anim.onAnimEnd != UVAnimation.ANIM_END_ACTION.Do_Nothing) && anim.
framerate != 0.0f)
675 if (animCompleteDelegate != null)
676 animCompleteDelegate(
this);
691 Debug.LogError(
"ERROR: Animation index " + index +
" is out of bounds!");
705 for (
int i = 0; i < animations.Length; ++i)
715 Debug.LogError(
"ERROR: Animation \"" + name +
"\" not found!");
727 else if (curAnim !=
animations[index] || !animating)
740 else if (curAnim.
name != name || !animating)
751 if (curAnim != anim || !animating)
765 RemoveFromAnimatedList();
782 if (curAnim == null)
return;
792 protected override void AddToAnimatedList()
802 #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
803 if (animating || !Application.isPlaying || !gameObject.activeInHierarchy)
805 if (animating || !Application.isPlaying || !gameObject.active)
810 currentlyAnimating =
true;
811 SpriteAnimationPump.Add(
this);
816 protected override void RemoveFromAnimatedList()
818 SpriteAnimationPump.Remove(
this);
820 currentlyAnimating =
false;
843 for (
int i = 0; i < animations.Length; ++i)
856 for (
int i = 0; i < animations.Length; ++i)
858 if (
string.Equals(
animations[i].name, stateName, System.StringComparison.CurrentCultureIgnoreCase))
887 uvRect.xMax = uvRect.x + tempUV.x;
888 uvRect.yMax = uvRect.y + tempUV.y;
890 frameInfo.uvs = uvRect;
921 uvRect.xMax = uvRect.x + tempUV.x;
922 uvRect.yMax = uvRect.y + tempUV.y;
928 uvRect.xMax -= bleedCompensationUV.x * 2f;
929 uvRect.yMax -= bleedCompensationUV.y * 2f;
931 frameInfo.uvs = uvRect;
954 public override void DoMirror()
957 if (Application.isPlaying)
965 if (screenSize.x == 0 || screenSize.y == 0)
970 mirror =
new SpriteMirror();
974 mirror.Validate(
this);
978 if (mirror.DidChange(
this))
995 GameObject go =
new GameObject(name);
996 go.transform.position = pos;
1010 GameObject go =
new GameObject(name);
1011 go.transform.position = pos;
1012 go.transform.rotation = rotation;
1020 public class SpriteMirror : SpriteRootMirror
1022 public Vector2 lowerLeftPixel, pixelDimensions;
1036 if (base.DidChange(s))
1038 if (((
ManualSprite)s).lowerLeftPixel != lowerLeftPixel)
1040 s.uvsInitialized =
false;
1043 if (((
ManualSprite)s).pixelDimensions != pixelDimensions)
1045 s.uvsInitialized =
false;
void RevertToStatic()
Reverts the sprite to its static (non-animating) default appearance.
Color Color
Accessor for the object's current overall color tint.
static ManualSprite Create(string name, Vector3 pos)
Creates a GameObject and attaches this component type to it.
virtual void SetSize(float w, float h)
Sets the physical dimensions of the sprite in the plane selected
bool pixelPerfect
Automatically sizes the sprite so that it will display pixel-perfect on-screen. NOTE: If you change t...
void DoAnim(int index)
Plays the specified animation only if it is not already playing.
string name
The name of the animation sequence
void PlayAnimInReverse(UVAnimation_Multi anim)
Like PlayAnim, but plays the animation in reverse. See PlayAnim.
override void PlayAnim(string name)
Starts playing the specified animation Note: this doesn't resume from a pause, it completely restarts...
override void Copy(SpriteRoot s)
Copies all the attributes of another sprite.
bool autoResize
Automatically resizes the sprite based on its new UV dimensions compared to its previous dimensions...
override void Clear()
Resets important sprite values to defaults for reuse.
float width
Width of the sprite in world space.
void DoAnim(UVAnimation_Multi anim)
Plays the specified animation only if it is not already playing.
void SetPixelDimensions(int x, int y)
Sets the pixel dimensions of the sprite. See pixelDimensions
virtual void SetColor(Color c)
Sets the sprite's color to the specified color.
void Setup(float w, float h, Vector2 lowerleftPixel, Vector2 pixeldimensions)
Sets up the essential elements of a sprite.
int GetCurPosition()
Returns the (zero-based) frame number of the current position in the over all animation. Example: If the multi contains a total of 100 frames and 25 frames have played so far, then 24 will be returned (because it is zero-based). If the multi is playing backwards, this number will count down from 100 as well.
void SetLowerLeftPixel(int x, int y)
Sets the lower-left pixel of the sprite. See lowerLeftPixel
void AddAnimation(UVAnimation_Multi anim)
Adds an animation to the sprite for its use.
override void PlayAnimInReverse(int index)
Like PlayAnim, but plays the animation in reverse. See PlayAnim.
void CalcSize()
Recalculates the width and height of the sprite based upon the change in its UV dimensions (autoResiz...
int defaultAnim
Index of the animation to play by default.
void PlayAnim(UVAnimation_Multi anim)
Starts playing the specified animation Note: this doesn't resume from a pause, it completely restarts...
override void PlayAnimInReverse(string name)
Like PlayAnim, but plays the animation in reverse. See PlayAnim.
UVAnimation_Multi[] animations
Array of available animation sequences. This is typically built in-editor.
bool playAnimOnStart
When set to true, the sprite will play the default animation (see defaultAnim) when the sprite is ins...
Vector2 PixelSpaceToUVSpace(Vector2 xy)
Converts pixel-space values to UV-space scalar values according to the currently assigned material...
void PauseAnim()
Pauses the currently-playing animation.
Vector2 PixelCoordToUVCoord(Vector2 xy)
Converts pixel coordinates to UV coordinates according to the currently assigned material. NOTE: This is for converting coordinates and will reverse the Y component accordingly. For converting widths and heights, use PixelSpaceToUVSpace()!
bool managed
When true, the sprite will be managed by the selected sprite manager script. When false...
void SetPixelDimensions(Vector2 size)
Sets the pixel dimensions of the sprite. See pixelDimensions
override void StopAnim()
Stops the current animation from playing and resets it to the beginning for playing again...
void UnpauseAnim()
Resumes an animation from where it left off previously.
UVAnimation_Multi GetAnim(string name)
Returns a reference to the animation that matches the name specified.
override void Hide(bool tf)
Hides or displays the sprite by disabling/enabling the sprite's mesh renderer component, or if managed, sets the mesh size to 0.
override void Delete()
If non-managed, call Delete() before destroying this component or the GameObject to which it is attac...
float framerate
The rate in frames per second at which to play the animation.
override void PlayAnim(int index)
Starts playing the specified animation Note: this doesn't resume from a pause, it completely restarts...
The root class of all sprites. Does not assume any animation capabilities or atlas packing...
override void SetState(int index)
Sets the sprite to the specified state/animation.
float height
Height of the sprite in world space.
Vector2 bleedCompensation
Will contract the UV edges of the sprite by the specified amount to prevent "bleeding" from neighbori...
void SetLowerLeftPixel(Vector2 lowerLeft)
Sets the lower-left pixel of the sprite. See lowerLeftPixel
static ManualSprite Create(string name, Vector3 pos, Quaternion rotation)
Creates a GameObject and attaches this component type to it.
UVAnimation_Multi GetCurAnim()
Returns a reference to the currently selected animation. NOTE: This does not mean the animation is cu...
Vector2 lowerLeftPixel
Position of the lower-left pixel of the sprite when no animation has been played. ...
void Setup(float w, float h, Vector2 lowerleftPixel, Vector2 pixeldimensions, Material material)
Sets up the essential elements of a sprite.
int GetFrameCount()
Returns the total number of frames displayed by this animation.
override int GetStateIndex(string stateName)
Returns the index of the state with the specified name. -1 if no state matching the specified name is...
Vector2 pixelDimensions
Dimensions, in pixels, of the sprite when no animation has been played.
UVAnimation.ANIM_END_ACTION onAnimEnd
What the sprite should do when the animation is done playing. The options are to: 1) Do nothing...
void DoAnim(string name)
Plays the specified animation only if it is not already playing.