SpriteManager 2
 All Classes Functions Variables Enumerations Enumerator Properties
Sprite.cs
1 //-----------------------------------------------------------------
2 // Copyright 2010 Brady Wright and Above and Beyond Software
3 // All rights reserved
4 //-----------------------------------------------------------------
5 
6 // #define SPRITE_FRAME_DELEGATE // Adds code to call a delegate for each frame of animation (comment out this line to improve performance)
7 
8 
9 using UnityEngine;
10 using System.Collections;
11 
12 
17 [ExecuteInEditMode]
18 [AddComponentMenu("SpriteManager 2/Manual Sprite")]
19 public class ManualSprite : SpriteBase
20 {
25  public Vector2 lowerLeftPixel; // Position of the lower-left pixel of the sprite
26 
31  public Vector2 pixelDimensions; // Dimensions, in pixels, of the sprite
32 
33 
34  // Animation-related vars and types:
35 
40  public UVAnimation_Multi[] animations; // Array of available animations
41  protected UVAnimation_Multi curAnim = null; // The current animation
42 
43 
44  public override Vector2 GetDefaultPixelSize(PathFromGUIDDelegate guid2Path, AssetLoaderDelegate loader)
45  {
46  return pixelDimensions;
47  }
48 
49 
50  protected override void Awake()
51  {
52  base.Awake();
53 
54  Init();
55 
56  if (animations == null)
58 
59  for (int i = 0; i < animations.Length; ++i)
60  {
61  animations[i].index = i;
62  animations[i].BuildUVAnim(this);
63  }
64  }
65 
66 
67  protected override void Init()
68  {
69  base.Init();
70  }
71 
72 
73  public override void Start()
74  {
75  if (m_started)
76  return;
77  base.Start();
78 
79  // See if we should play a default animation:
80  if (playAnimOnStart && defaultAnim < animations.Length)
81  if (Application.isPlaying)
83  }
84 
85 
86  // Resets all sprite values to defaults for reuse:
87  public override void Clear()
88  {
89  base.Clear();
90 
91  if (curAnim != null)
92  {
93  PauseAnim();
94  curAnim = null;
95  }
96  }
97 
105  public void Setup(float w, float h, Vector2 lowerleftPixel, Vector2 pixeldimensions)
106  {
107  this.Setup(w, h, lowerleftPixel, pixeldimensions, m_spriteMesh.material);
108  }
109 
118  public void Setup(float w, float h, Vector2 lowerleftPixel, Vector2 pixeldimensions, Material material)
119  {
120  width = w;
121  height = h;
122  lowerLeftPixel = lowerleftPixel;
123  pixelDimensions = pixeldimensions;
124  uvsInitialized = false;
125 
126  if (!managed)
127  ((SpriteMesh)m_spriteMesh).material = material;
128 
129  if (uvsInitialized)
130  {
131  Init();
132  InitUVs();
133  SetBleedCompensation();
134  }
135  else
136  Init();
137  }
138 
143  public override void Copy(SpriteRoot s)
144  {
145  ManualSprite sp;
146 
147  base.Copy(s);
148 
149  // Check the type:
150  if (!(s is ManualSprite))
151  return;
152 
153  sp = (ManualSprite)s;
154 
155  lowerLeftPixel = sp.lowerLeftPixel;
156  pixelDimensions = sp.pixelDimensions;
157 
158  InitUVs();
159 
160  SetBleedCompensation(s.bleedCompensation);
161 
162  if (autoResize || pixelPerfect)
163  CalcSize();
164  else
165  SetSize(s.width, s.height);
166 
167  if (sp.animations.Length > 0)
168  {
169  animations = new UVAnimation_Multi[sp.animations.Length];
170  for (int i = 0; i < animations.Length; ++i)
171  animations[i] = sp.animations[i].Clone();
172  }
173 
174  for (int i = 0; i < animations.Length; ++i)
175  animations[i].BuildUVAnim(this);
176  }
177 
178 
179  // Implements UV calculation
180  public override void InitUVs()
181  {
183  uvRect.x = tempUV.x;
184  uvRect.y = tempUV.y;
185 
187  uvRect.xMax = uvRect.x + tempUV.x;
188  uvRect.yMax = uvRect.y + tempUV.y;
189 
190  frameInfo.uvs = uvRect;
191  }
192 
193 
194  //-----------------------------------------------------------------
195  // Animation-related routines:
196  //-----------------------------------------------------------------
197 
198 
203  public void AddAnimation(UVAnimation_Multi anim)
204  {
205  UVAnimation_Multi[] temp;
206  temp = animations;
207 
208  animations = new UVAnimation_Multi[temp.Length + 1];
209  temp.CopyTo(animations, 0);
210 
211  anim.index = animations.Length - 1;
212  animations[anim.index] = anim;
213  }
214 
215  /*
216  // Steps to the next frame of sprite animation
217  public bool StepAnim(float time)
218  {
219  if (curAnim == null)
220  return false;
221 
222  timeSinceLastFrame += time;
223 
224  framesToAdvance = (int)(timeSinceLastFrame / timeBetweenAnimFrames);
225 
226  // If there's nothing to do, return:
227  if (framesToAdvance < 1)
228  return true;
229 
230  while (framesToAdvance > 0)
231  {
232  if (curAnim.GetNextFrame(ref lowerLeftUV))
233  --framesToAdvance;
234  else
235  {
236  // We reached the end of our animation
237  if (animCompleteDelegate != null)
238  animCompleteDelegate();
239 
240  // Update mesh UVs:
241  UpdateUVs();
242  PauseAnim();
243  animating = false;
244 
245  return false;
246  }
247  }
248 
249  // Update mesh UVs:
250  UpdateUVs();
251 
252  timeSinceLastFrame = 0;
253 
254  return true;
255  }
256  */
257 
258  // Steps to the next frame of sprite animation
259  public override bool StepAnim(float time)
260  {
261  if (curAnim == null)
262  return false;
263 
264  timeSinceLastFrame += Mathf.Max(0, time);
265  //timeSinceLastFrame += time;
266 
267  framesToAdvance = (timeSinceLastFrame / timeBetweenAnimFrames);
268 
269  // If there's nothing to do, return:
270  if (framesToAdvance < 1)
271  {
272  if (crossfadeFrames)
273  SetColor(new Color(1f, 1f, 1f, (1f - framesToAdvance)));
274  return true;
275  }
276 
277  //timeSinceLastFrame -= timeBetweenAnimFrames * (float)framesToAdvance;
278 
279  while (framesToAdvance >= 1f)
280  {
281  if (curAnim.GetNextFrame(ref frameInfo))
282  {
283 #if SPRITE_FRAME_DELEGATE
284  // Notify the delegate:
285  if(framesToAdvance >= 1f)
286  if (animFrameDelegate != null)
287  animFrameDelegate(this, curAnim.GetCurPosition());
288 #endif
289  framesToAdvance -= 1f;
290  timeSinceLastFrame -= timeBetweenAnimFrames;
291  }
292  else
293  {
294  // We reached the end of our animation
295  if (crossfadeFrames)
296  SetColor(Color.white);
297 
298  // See if we should revert to a static appearance,
299  // default anim, or do nothing, etc:
300  switch (curAnim.onAnimEnd)
301  {
302  case UVAnimation.ANIM_END_ACTION.Do_Nothing:
303  PauseAnim();
304 
305  // Update mesh UVs:
306  uvRect = frameInfo.uvs;
307  SetBleedCompensation();
308 
309  // Resize if selected:
310  if (autoResize || pixelPerfect)
311  CalcSize();
312  break;
313 
314  case UVAnimation.ANIM_END_ACTION.Revert_To_Static:
315  RevertToStatic();
316  curAnim = null;
317  break;
318 
319  case UVAnimation.ANIM_END_ACTION.Play_Default_Anim:
320  // Notify the delegates:
321  /*
322  #if SPRITE_FRAME_DELEGATE
323  if (animFrameDelegate != null)
324  animFrameDelegate(this, curAnim.GetCurPosition());
325  #endif
326  */
327  if (animCompleteDelegate != null)
328  animCompleteDelegate(this);
329 
330  // Play the default animation:
332  return false;
333 
334  case UVAnimation.ANIM_END_ACTION.Hide:
335  Hide(true);
336  break;
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);
340 #else
341  gameObject.active = false;
342 #endif
343  break;
344  case UVAnimation.ANIM_END_ACTION.Destroy:
345  // Notify the delegates:
346  /*
347  #if SPRITE_FRAME_DELEGATE
348  if (animFrameDelegate != null)
349  animFrameDelegate(this, curAnim.GetCurPosition());
350  #endif
351  */
352  if (animCompleteDelegate != null)
353  animCompleteDelegate(this);
354 
355  Delete();
356  Destroy(gameObject);
357  break;
358  }
359 
360  // Notify the delegates:
361  /*
362  #if SM2_FRAME_DELEGATE
363  if (animFrameDelegate != null)
364  animFrameDelegate(this, curAnim.GetCurPosition());
365  #endif
366  */
367  if (animCompleteDelegate != null)
368  animCompleteDelegate(this);
369 
370  // Check to see if we are still animating
371  // before setting the curAnim to null.
372  // Animating should be turned off if
373  // PauseAnim() was called above, or if we
374  // reverted to static. But it could have
375  // been turned on again by the
376  // animCompleteDelegate.
377  if (!animating)
378  curAnim = null;
379 
380  return false;
381  }
382  }
383 
384  // Cross-fade to the next frame:
385  if (crossfadeFrames)
386  {
387  UVAnimation curClip = curAnim.GetCurrentClip();
388  int curClipNum = curAnim.GetCurClipNum();
389  int curFrame = curClip.GetCurPosition();
390  int multiStepDir = curAnim.StepDirection;
391  int clipStepDir = curClip.StepDirection;
392 
393  curAnim.GetNextFrame(ref nextFrameInfo);
394 
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;
401 
402  // Undo our advance:
403  curAnim.SetCurClipNum(curClipNum);
404  curClip.SetCurrentFrame(curFrame);
405  curAnim.StepDirection = multiStepDir;
406  curClip.StepDirection = clipStepDir;
407 
408  SetColor(new Color(1f, 1f, 1f, (1f - framesToAdvance)));
409  }
410  /*
411  #if SM2_FRAME_DELEGATE
412  if (animFrameDelegate != null)
413  animFrameDelegate(this, curAnim.GetCurPosition());
414  #endif
415  */
416  // Update mesh UVs:
417  uvRect = frameInfo.uvs;
418  SetBleedCompensation();
419 
420  // Resize if selected:
421  if (autoResize || pixelPerfect)
422  CalcSize();
423 
424  //timeSinceLastFrame = 0;
425 
426  return true;
427  }
428 
429 
430  // Calls our animation complete delegate:
431  protected void CallAnimCompleteDelegate()
432  {
433  if (animCompleteDelegate != null)
434  animCompleteDelegate(this);
435  }
436 
437 
438  /*
439  // Steps to the next frame of sprite animation
440  public override bool StepAnim()
441  {
442  if (curAnim == null)
443  return false;
444 
445  if (!curAnim.GetNextFrame(ref uvRect))
446  {
447  // We reached the end of our animation
448 
449  // See if we should revert to a static appearance,
450  // default anim, or do nothing:
451  if (curAnim.onAnimEnd == UVAnimation.ANIM_END_ACTION.Do_Nothing)
452  {
453  PauseAnim();
454 
455  // Update mesh UVs:
456  SetBleedCompensation();
457 
458  // Resize if selected:
459  if (autoResize || pixelPerfect)
460  CalcSize();
461  }
462  else if (curAnim.onAnimEnd == UVAnimation.ANIM_END_ACTION.Revert_To_Static)
463  RevertToStatic();
464  else if (curAnim.onAnimEnd == UVAnimation.ANIM_END_ACTION.Play_Default_Anim)
465  {
466  // Notify the delegate:
467  if (animCompleteDelegate != null)
468  animCompleteDelegate();
469 
470  // Play the default animation:
471  PlayAnim(defaultAnim);
472 
473  return false;
474  }
475 
476  // Notify the delegate:
477  if (animCompleteDelegate != null)
478  animCompleteDelegate();
479 
480  // Check to see if we are still animating
481  // before setting the curAnim to null.
482  // Animating should be turned off if
483  // PauseAnim() was called above, or if we
484  // reverted to static. But it could have
485  // been turned on again by the
486  // animCompleteDelegate.
487  if (!animating)
488  curAnim = null;
489 
490  return false;
491  }
492 
493  // Update mesh UVs:
494  SetBleedCompensation();
495 
496  UpdateUVs();
497 
498  // Resize if selected:
499  if (autoResize || pixelPerfect)
500  CalcSize();
501 
502  return true;
503  }*/
504 
505 
513  public void PlayAnim(UVAnimation_Multi anim)
514  {
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)
517 #else
518  if (deleted || !gameObject.active)
519 #endif
520  return;
521  if (!m_started)
522  Start();
523 
524  curAnim = anim;
525  curAnimIndex = curAnim.index;
526  curAnim.Reset();
527 
528  // Ensure the framerate is not 0 so we don't
529  // divide by zero:
530  if (anim.framerate != 0.0f)
531  {
532  timeBetweenAnimFrames = 1f / anim.framerate;
533  }
534  else
535  {
536  timeBetweenAnimFrames = 1f; // Just some dummy value since it won't be used
537  }
538 
539  timeSinceLastFrame = timeBetweenAnimFrames;
540 
541  // Only add to the animated list if
542  // the animation has more than 1 frame
543  // or the framerate is non-zero:
544  if ((anim.GetFrameCount() > 1 || anim.onAnimEnd != UVAnimation.ANIM_END_ACTION.Do_Nothing) && anim.framerate != 0.0f)
545  {
546  StepAnim(0);
547  // Start coroutine
548  if (!animating)
549  {
550  //animating = true;
551  AddToAnimatedList();
552  //StartCoroutine(AnimationPump());
553  }
554  }
555  else
556  {
557  // Make sure we are no longer in the animation pump:
558  PauseAnim();
559 
560  // Since this is a single-frame anim,
561  // call our delegate before setting
562  // the frame so that our behavior is
563  // consistent with multi-frame anims:
564  if (animCompleteDelegate != null)
565  {
566  // See if we need to delay calling
567  // our delegate to be consistent
568  // with our framerate:
569  if (anim.framerate != 0)
570  {
571  Invoke("CallAnimCompleteDelegate", 1f / anim.framerate);
572  }
573  else
574  animCompleteDelegate(this);
575  }
576 
577  StepAnim(0);
578  }
579  }
580 
588  public override void PlayAnim(int index)
589  {
590  if (index >= animations.Length)
591  {
592  Debug.LogError("ERROR: Animation index " + index + " is out of bounds!");
593  return;
594  }
595 
596  PlayAnim(animations[index]);
597  }
598 
606  public override void PlayAnim(string name)
607  {
608  for (int i = 0; i < animations.Length; ++i)
609  {
610  if (animations[i].name == name)
611  {
612  PlayAnim(animations[i]);
613  return;
614  }
615  }
616 
617  Debug.LogError("ERROR: Animation \"" + name + "\" not found!");
618  }
619 
626  {
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)
629 #else
630  if (deleted || !gameObject.active)
631 #endif
632  return;
633  if (!m_started)
634  Start();
635 
636  curAnim = anim;
637  curAnim.Reset();
638  curAnim.PlayInReverse();
639 
640  // Ensure the framerate is not 0 so we don't
641  // divide by zero:
642  if (anim.framerate != 0.0f)
643  {
644  timeBetweenAnimFrames = 1f / anim.framerate;
645  }
646  else
647  {
648  timeBetweenAnimFrames = 1f; // Just some dummy value since it won't be used
649  }
650 
651  timeSinceLastFrame = timeBetweenAnimFrames;
652 
653  // Only add to the animated list if
654  // the animation has more than 1 frame:
655  if ((anim.GetFrameCount() > 1 || anim.onAnimEnd != UVAnimation.ANIM_END_ACTION.Do_Nothing) && anim.framerate != 0.0f)
656  {
657  StepAnim(0);
658  // Start coroutine
659  if (!animating)
660  {
661  //animating = true;
662  AddToAnimatedList();
663  //StartCoroutine(AnimationPump());
664  }
665  }
666  else
667  {
668  // Make sure we are no longer in the animation pump:
669  PauseAnim();
670 
671  // Since this is a single-frame anim,
672  // call our delegate before setting
673  // the frame so that our behavior is
674  // consistent with multi-frame anims:
675  if (animCompleteDelegate != null)
676  animCompleteDelegate(this);
677 
678  StepAnim(0);
679  }
680  }
681 
687  public override void PlayAnimInReverse(int index)
688  {
689  if (index >= animations.Length)
690  {
691  Debug.LogError("ERROR: Animation index " + index + " is out of bounds!");
692  return;
693  }
694 
696  }
697 
703  public override void PlayAnimInReverse(string name)
704  {
705  for (int i = 0; i < animations.Length; ++i)
706  {
707  if (animations[i].name == name)
708  {
709  animations[i].PlayInReverse();
711  return;
712  }
713  }
714 
715  Debug.LogError("ERROR: Animation \"" + name + "\" not found!");
716  }
717 
723  public void DoAnim(int index)
724  {
725  if (curAnim == null)
726  PlayAnim(index);
727  else if (curAnim != animations[index] || !animating)
728  PlayAnim(index);
729  }
730 
736  public void DoAnim(string name)
737  {
738  if (curAnim == null)
739  PlayAnim(name);
740  else if (curAnim.name != name || !animating)
741  PlayAnim(name);
742  }
743 
749  public void DoAnim(UVAnimation_Multi anim)
750  {
751  if (curAnim != anim || !animating)
752  PlayAnim(anim);
753  }
754 
761  public override void StopAnim()
762  {
763  // Stop coroutine
764  //animating = false;
765  RemoveFromAnimatedList();
766 
767  //StopAllCoroutines();
768 
769  // Reset the animation:
770  if (curAnim != null)
771  curAnim.Reset();
772 
773  // Revert to our static appearance:
774  RevertToStatic();
775  }
776 
780  public void UnpauseAnim()
781  {
782  if (curAnim == null) return;
783 
784  // Resume coroutine
785  //animating = true;
786  AddToAnimatedList();
787  //StartCoroutine(AnimationPump());
788  }
789 
790  // Adds the sprite to the list of currently
791  // animating sprites:
792  protected override void AddToAnimatedList()
793  {
794  // Check to see if the coroutine is running,
795  // and if not, start it:
796  // if (!SpriteAnimationPump.pumpIsRunning)
797  // SpriteAnimationPump.Instance.StartAnimationPump();
798 
799  // If we're already animating, then we're
800  // already in the list, no need to add again.
801  // Also, if we're inactive, also don't add:
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)
804 #else
805  if (animating || !Application.isPlaying || !gameObject.active)
806 #endif
807  return;
808 
809  animating = true;
810  currentlyAnimating = true;
811  SpriteAnimationPump.Add(this);
812  }
813 
814  // Removes the sprite from the list of currently
815  // animating sprites:
816  protected override void RemoveFromAnimatedList()
817  {
818  SpriteAnimationPump.Remove(this);
819  animating = false;
820  currentlyAnimating = false;
821  }
822 
823 
824  //--------------------------------------------------------------
825  // Accessors:
826  //--------------------------------------------------------------
833  public UVAnimation_Multi GetCurAnim() { return curAnim; }
834 
841  public UVAnimation_Multi GetAnim(string name)
842  {
843  for (int i = 0; i < animations.Length; ++i)
844  {
845  if (animations[i].name == name)
846  {
847  return animations[i];
848  }
849  }
850 
851  return null;
852  }
853 
854  public override int GetStateIndex(string stateName)
855  {
856  for (int i = 0; i < animations.Length; ++i)
857  {
858  if (string.Equals(animations[i].name, stateName, System.StringComparison.CurrentCultureIgnoreCase))
859  {
860  return i;
861  }
862  }
863 
864  return -1;
865  }
866 
867  public override void SetState(int index)
868  {
869  PlayAnim(index);
870  }
871 
877  public void SetLowerLeftPixel(Vector2 lowerLeft)
878  {
879  lowerLeftPixel = lowerLeft;
880 
881  // Calculate UV dimensions:
883  uvRect.x = tempUV.x;
884  uvRect.y = tempUV.y;
885 
887  uvRect.xMax = uvRect.x + tempUV.x;
888  uvRect.yMax = uvRect.y + tempUV.y;
889 
890  frameInfo.uvs = uvRect;
891 
892  // Adjust for bleed compensation:
893  SetBleedCompensation(bleedCompensation);
894 
895  // Now see if we need to resize:
896  if (autoResize || pixelPerfect)
897  CalcSize();
898  }
899 
906  public void SetLowerLeftPixel(int x, int y)
907  {
908  SetLowerLeftPixel(new Vector2((float)x, (float)y));
909  }
910 
916  public void SetPixelDimensions(Vector2 size)
917  {
918  pixelDimensions = size;
919 
921  uvRect.xMax = uvRect.x + tempUV.x;
922  uvRect.yMax = uvRect.y + tempUV.y;
923 
924  // Adjust for bleed compensation
925  // NOTE: We can't call SetBleedCompensation()
926  // here because we've only changed the right-hand
927  // side, so we have to calculate it ourselves:
928  uvRect.xMax -= bleedCompensationUV.x * 2f;
929  uvRect.yMax -= bleedCompensationUV.y * 2f;
930 
931  frameInfo.uvs = uvRect;
932 
933  // Now see if we need to resize:
934  if (autoResize || pixelPerfect)
935  CalcSize();
936  }
937 
944  public void SetPixelDimensions(int x, int y)
945  {
946  SetPixelDimensions(new Vector2((float)x, (float)y));
947  }
948 
949 
950 
951 
952  // Ensures that the sprite is updated in the scene view
953  // while editing:
954  public override void DoMirror()
955  {
956  // Only run if we're not playing:
957  if (Application.isPlaying)
958  return;
959 
960  // This means Awake() was recently called, meaning
961  // we couldn't reliably get valid camera viewport
962  // sizes, so we zeroed them out so we'd know to
963  // get good values later on (when OnDrawGizmos()
964  // is called):
965  if (screenSize.x == 0 || screenSize.y == 0)
966  base.Start();
967 
968  if (mirror == null)
969  {
970  mirror = new SpriteMirror();
971  mirror.Mirror(this);
972  }
973 
974  mirror.Validate(this);
975 
976  // Compare our mirrored settings to the current settings
977  // to see if something was changed:
978  if (mirror.DidChange(this))
979  {
980  Init();
981  mirror.Mirror(this); // Update the mirror
982  }
983  }
984 
985 
993  static public ManualSprite Create(string name, Vector3 pos)
994  {
995  GameObject go = new GameObject(name);
996  go.transform.position = pos;
997  return (ManualSprite)go.AddComponent(typeof(ManualSprite));
998  }
999 
1008  static public ManualSprite Create(string name, Vector3 pos, Quaternion rotation)
1009  {
1010  GameObject go = new GameObject(name);
1011  go.transform.position = pos;
1012  go.transform.rotation = rotation;
1013  return (ManualSprite)go.AddComponent(typeof(ManualSprite));
1014  }
1015 }
1016 
1017 
1018 // Mirrors the editable settings of a sprite that affect
1019 // how the sprite is drawn in the scene view
1020 public class SpriteMirror : SpriteRootMirror
1021 {
1022  public Vector2 lowerLeftPixel, pixelDimensions;
1023 
1024  // Mirrors the specified sprite's settings
1025  public override void Mirror(SpriteRoot s)
1026  {
1027  base.Mirror(s);
1028 
1029  lowerLeftPixel = ((ManualSprite)s).lowerLeftPixel;
1030  pixelDimensions = ((ManualSprite)s).pixelDimensions;
1031  }
1032 
1033  // Returns true if any of the settings do not match:
1034  public override bool DidChange(SpriteRoot s)
1035  {
1036  if (base.DidChange(s))
1037  return true;
1038  if (((ManualSprite)s).lowerLeftPixel != lowerLeftPixel)
1039  {
1040  s.uvsInitialized = false;
1041  return true;
1042  }
1043  if (((ManualSprite)s).pixelDimensions != pixelDimensions)
1044  {
1045  s.uvsInitialized = false;
1046  return true;
1047  }
1048 
1049  return false;
1050  }
1051 }
void RevertToStatic()
Reverts the sprite to its static (non-animating) default appearance.
Definition: SpriteBase.cs:1538
Color Color
Accessor for the object's current overall color tint.
Definition: SpriteRoot.cs:1736
static ManualSprite Create(string name, Vector3 pos)
Creates a GameObject and attaches this component type to it.
Definition: Sprite.cs:993
virtual void SetSize(float w, float h)
Sets the physical dimensions of the sprite in the plane selected
Definition: SpriteRoot.cs:1384
bool pixelPerfect
Automatically sizes the sprite so that it will display pixel-perfect on-screen. NOTE: If you change t...
Definition: SpriteRoot.cs:762
void DoAnim(int index)
Plays the specified animation only if it is not already playing.
Definition: Sprite.cs:723
string name
The name of the animation sequence
Definition: SpriteBase.cs:702
void PlayAnimInReverse(UVAnimation_Multi anim)
Like PlayAnim, but plays the animation in reverse. See PlayAnim.
Definition: Sprite.cs:625
override void PlayAnim(string name)
Starts playing the specified animation Note: this doesn't resume from a pause, it completely restarts...
Definition: Sprite.cs:606
override void Copy(SpriteRoot s)
Copies all the attributes of another sprite.
Definition: Sprite.cs:143
bool autoResize
Automatically resizes the sprite based on its new UV dimensions compared to its previous dimensions...
Definition: SpriteRoot.cs:771
override void Clear()
Resets important sprite values to defaults for reuse.
Definition: Sprite.cs:87
float width
Width of the sprite in world space.
Definition: SpriteRoot.cs:732
void DoAnim(UVAnimation_Multi anim)
Plays the specified animation only if it is not already playing.
Definition: Sprite.cs:749
void SetPixelDimensions(int x, int y)
Sets the pixel dimensions of the sprite. See pixelDimensions
Definition: Sprite.cs:944
virtual void SetColor(Color c)
Sets the sprite's color to the specified color.
Definition: SpriteRoot.cs:1723
void Setup(float w, float h, Vector2 lowerleftPixel, Vector2 pixeldimensions)
Sets up the essential elements of a sprite.
Definition: Sprite.cs:105
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.
Definition: SpriteBase.cs:1224
void SetLowerLeftPixel(int x, int y)
Sets the lower-left pixel of the sprite. See lowerLeftPixel
Definition: Sprite.cs:906
void AddAnimation(UVAnimation_Multi anim)
Adds an animation to the sprite for its use.
Definition: Sprite.cs:203
override void PlayAnimInReverse(int index)
Like PlayAnim, but plays the animation in reverse. See PlayAnim.
Definition: Sprite.cs:687
void CalcSize()
Recalculates the width and height of the sprite based upon the change in its UV dimensions (autoResiz...
Definition: SpriteRoot.cs:1350
int defaultAnim
Index of the animation to play by default.
Definition: SpriteBase.cs:1297
void PlayAnim(UVAnimation_Multi anim)
Starts playing the specified animation Note: this doesn't resume from a pause, it completely restarts...
Definition: Sprite.cs:513
override void PlayAnimInReverse(string name)
Like PlayAnim, but plays the animation in reverse. See PlayAnim.
Definition: Sprite.cs:703
UVAnimation_Multi[] animations
Array of available animation sequences. This is typically built in-editor.
Definition: Sprite.cs:40
bool playAnimOnStart
When set to true, the sprite will play the default animation (see defaultAnim) when the sprite is ins...
Definition: SpriteBase.cs:1284
Vector2 PixelSpaceToUVSpace(Vector2 xy)
Converts pixel-space values to UV-space scalar values according to the currently assigned material...
Definition: SpriteRoot.cs:2425
void PauseAnim()
Pauses the currently-playing animation.
Definition: SpriteBase.cs:1515
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()!
Definition: SpriteRoot.cs:2457
bool managed
When true, the sprite will be managed by the selected sprite manager script. When false...
Definition: SpriteRoot.cs:696
void SetPixelDimensions(Vector2 size)
Sets the pixel dimensions of the sprite. See pixelDimensions
Definition: Sprite.cs:916
override void StopAnim()
Stops the current animation from playing and resets it to the beginning for playing again...
Definition: Sprite.cs:761
void UnpauseAnim()
Resumes an animation from where it left off previously.
Definition: Sprite.cs:780
UVAnimation_Multi GetAnim(string name)
Returns a reference to the animation that matches the name specified.
Definition: Sprite.cs:841
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.
Definition: SpriteBase.cs:1403
override void Delete()
If non-managed, call Delete() before destroying this component or the GameObject to which it is attac...
Definition: SpriteBase.cs:1342
float framerate
The rate in frames per second at which to play the animation.
Definition: SpriteBase.cs:717
override void PlayAnim(int index)
Starts playing the specified animation Note: this doesn't resume from a pause, it completely restarts...
Definition: Sprite.cs:588
The root class of all sprites. Does not assume any animation capabilities or atlas packing...
Definition: SpriteRoot.cs:628
override void SetState(int index)
Sets the sprite to the specified state/animation.
Definition: Sprite.cs:867
float height
Height of the sprite in world space.
Definition: SpriteRoot.cs:737
Vector2 bleedCompensation
Will contract the UV edges of the sprite by the specified amount to prevent "bleeding" from neighbori...
Definition: SpriteRoot.cs:744
void SetLowerLeftPixel(Vector2 lowerLeft)
Sets the lower-left pixel of the sprite. See lowerLeftPixel
Definition: Sprite.cs:877
static ManualSprite Create(string name, Vector3 pos, Quaternion rotation)
Creates a GameObject and attaches this component type to it.
Definition: Sprite.cs:1008
UVAnimation_Multi GetCurAnim()
Returns a reference to the currently selected animation. NOTE: This does not mean the animation is cu...
Definition: Sprite.cs:833
Vector2 lowerLeftPixel
Position of the lower-left pixel of the sprite when no animation has been played. ...
Definition: Sprite.cs:25
void Setup(float w, float h, Vector2 lowerleftPixel, Vector2 pixeldimensions, Material material)
Sets up the essential elements of a sprite.
Definition: Sprite.cs:118
int GetFrameCount()
Returns the total number of frames displayed by this animation.
Definition: SpriteBase.cs:1204
override int GetStateIndex(string stateName)
Returns the index of the state with the specified name. -1 if no state matching the specified name is...
Definition: Sprite.cs:854
Vector2 pixelDimensions
Dimensions, in pixels, of the sprite when no animation has been played.
Definition: Sprite.cs:31
UVAnimation.ANIM_END_ACTION onAnimEnd
What the sprite should do when the animation is done playing. The options are to: 1) Do nothing...
Definition: SpriteBase.cs:724
void DoAnim(string name)
Plays the specified animation only if it is not already playing.
Definition: Sprite.cs:736