SpriteManager 2
 All Classes Functions Variables Enumerations Enumerator Properties
SpriteRoot.cs
1 //-----------------------------------------------------------------
2 // Copyright 2010 Brady Wright and Above and Beyond Software
3 // All rights reserved
4 //-----------------------------------------------------------------
5 
6 
7 using UnityEngine;
8 using System.Collections;
9 using System.Collections.Generic;
10 
11 
12 
13 // A delegate type that matches the profile of AssetDatabase.LoadAssetAtPath
14 public delegate Object AssetLoaderDelegate(string path, System.Type type);
15 
16 
20 [System.Serializable]
21 public struct SPRITE_FRAME
22 {
23  // The UV coordinates of the sprite within the atlas.
24  public Rect uvs;
25 
26  // A pair of values that, when multiplied by the sprite's
27  // current size, yields values that are half of how large
28  // the original texture area would be were it not trimmed.
29  public Vector2 scaleFactor;
30 
31  // The offset distance from the center of the GameObject
32  // of the edges of the sprite - given as a percentage.
33  public Vector2 topLeftOffset;
34  public Vector2 bottomRightOffset;
35 
36  public SPRITE_FRAME(float dummy)
37  {
38  uvs = new Rect(1f, 1f, 1f, 1f);
39  scaleFactor = new Vector2(0.5f, 0.5f);
40  topLeftOffset = new Vector2(-1f, 1f);
41  bottomRightOffset = new Vector2(1f, -1f);
42  }
43 
44  public void Copy(CSpriteFrame f)
45  {
46  uvs = f.uvs;
47  scaleFactor = f.scaleFactor;
48  topLeftOffset = f.topLeftOffset;
49  bottomRightOffset = f.bottomRightOffset;
50  }
51 }
52 
53 
57 [System.Serializable]
58 public class SpriteState
59 {
60  public string name;
61  [HideInInspector]
62  public string imgPath;
63  [HideInInspector]
64  public CSpriteFrame frameInfo;
65 
66  public SpriteState(string n, string p)
67  {
68  name = n;
69  imgPath = p;
70  }
71 }
72 
73 
78 [System.Serializable]
79 public class CSpriteFrame
80 {
81  // The UV coordinates of the sprite within the atlas.
82  public Rect uvs = new Rect(1f, 1f, 1f, 1f);
83 
84  // A pair of values that, when multiplied by the sprite's
85  // current size, yields values that are half of how large
86  // the original texture area would be were it not trimmed.
87  public Vector2 scaleFactor = new Vector2(0.5f, 0.5f);
88 
89  // The offset distance from the center of the GameObject
90  // of the edges of the sprite - given as a percentage.
91  public Vector2 topLeftOffset = new Vector2(-1f, 1f);
92  public Vector2 bottomRightOffset = new Vector2(1f, -1f);
93 
94  public void Copy(SPRITE_FRAME f)
95  {
96  uvs = f.uvs;
97  scaleFactor = f.scaleFactor;
98  topLeftOffset = f.topLeftOffset;
99  bottomRightOffset = f.bottomRightOffset;
100  }
101 
102  public void Copy(CSpriteFrame f)
103  {
104  uvs = f.uvs;
105  scaleFactor = f.scaleFactor;
106  topLeftOffset = f.topLeftOffset;
107  bottomRightOffset = f.bottomRightOffset;
108  }
109 
110  public SPRITE_FRAME ToStruct()
111  {
112  SPRITE_FRAME sf;
113 
114  sf.uvs = uvs;
115  sf.scaleFactor = scaleFactor;
116  sf.topLeftOffset = topLeftOffset;
117  sf.bottomRightOffset = bottomRightOffset;
118 
119  return sf;
120  }
121 
122  public CSpriteFrame(){}
123 
124  public CSpriteFrame(CSpriteFrame f)
125  {
126  Copy(f);
127  }
128 
129  public CSpriteFrame(SPRITE_FRAME f)
130  {
131  Copy(f);
132  }
133 }
134 
135 
140 public interface IEZLinkedListItem<T>
141 {
142  T prev { get; set; }
143  T next { get; set; }
144 }
145 
150 public class EZLinkedListIterator<T> where T : IEZLinkedListItem<T>
151 {
152  protected T cur;
153  protected EZLinkedList<T> list;
154 
155  public T Current
156  {
157  get { return cur; }
158  set { cur = value; }
159  }
160 
166  public bool Begin(EZLinkedList<T> l)
167  {
168  list = l;
169  cur = l.Head;
170 
171  return cur == null;
172  }
173 
178  public void End()
179  {
180  list.End(this);
181  }
182 
183 
188  public bool Done
189  {
190  get { return cur == null; }
191  }
192 
197  public bool Next()
198  {
199  if (cur != null)
200  cur = cur.next;
201 
202  if (cur == null)
203  {
204  list.End(this);
205  return false;
206  }
207 
208  return true;
209  }
210 
219  public bool NextNoRemove()
220  {
221  if (cur != null)
222  cur = cur.next;
223 
224  return cur != null;
225  }
226 }
227 
228 // Wrapper for an arbitrary type so we can make any
229 // object into a linked list element.
230 public class EZLinkedListNode<T> : IEZLinkedListItem<EZLinkedListNode<T>>
231 {
232  public T val;
233  EZLinkedListNode<T> m_prev;
234  EZLinkedListNode<T> m_next;
235 
236  public EZLinkedListNode(T v)
237  {
238  val = v;
239  }
240 
241  public EZLinkedListNode<T> prev
242  {
243  get { return m_prev; }
244  set { m_prev = value; }
245  }
246 
247  public EZLinkedListNode<T> next
248  {
249  get { return m_next; }
250  set { m_next = value; }
251  }
252 }
253 
258 public class EZLinkedList<T> where T : IEZLinkedListItem<T>
259 {
260  List<EZLinkedListIterator<T>> iters = new List<EZLinkedListIterator<T>>();
261  List<EZLinkedListIterator<T>> freeIters = new List<EZLinkedListIterator<T>>();
262 
263  // The first element in our list:
264  protected T head;
265 
266  // Used to iterate through the list:
267  protected T cur;
268 
269  // Used for iterating with MoveNext so that
270  // if we remove the current item, we still
271  // can safely proceed to the next item:
272  protected T nextItem;
273 
274  // Running total of items in our list:
275  protected int count=0;
276 
277  public int Count
278  {
279  get { return count; }
280  }
281 
282  public bool Empty
283  {
284  get { return head == null; }
285  }
286 
287  public T Head
288  {
289  get { return head; }
290  }
291 
292  public T Current
293  {
294  get { return cur; }
295  set { cur = value; }
296  }
297 
304  {
306 
307  // Get a free iterator, if any:
308  if (freeIters.Count > 0)
309  {
310  it = freeIters[freeIters.Count-1];
311  freeIters.RemoveAt(freeIters.Count-1);
312  }
313  else
314  {
315  it = new EZLinkedListIterator<T>();
316  }
317 
318  iters.Add(it);
319  it.Begin(this);
320  return it;
321  }
322 
330  public void End(EZLinkedListIterator<T> it)
331  {
332  if(iters.Remove(it))
333  freeIters.Add(it);
334  }
335 
336  public bool Rewind()
337  {
338  cur = head;
339 
340  if (cur != null)
341  {
342  nextItem = cur.next;
343  return true;
344  }
345  else
346  {
347  nextItem = default(T);
348  return false;
349  }
350  }
351 
356  public bool MoveNext()
357  {
358  cur = nextItem;
359 
360  if (cur != null)
361  nextItem = cur.next;
362 
363  return cur != null;
364  }
365 
370  public void Add(T item)
371  {
372  if (head != null)
373  {
374  item.next = head;
375  head.prev = item;
376  }
377 
378  head = item;
379 
380  ++count;
381  }
382 
387  public void Remove(T item)
388  {
389  if (head == null || item == null)
390  return;
391 
392 
393  if (head.Equals(item))
394  {
395  head = item.next;
396 
397  // See if any iterators need to be notified:
398  if (iters.Count > 0)
399  {
400  // Set the current to the next:
401  for (int i = 0; i < iters.Count; ++i)
402  if (iters[i].Current != null)
403  if(iters[i].Current.Equals(item))
404  iters[i].Current = item.next;
405  }
406  }
407  else
408  {
409  // See if any iterators need to be notified:
410  if (iters.Count > 0)
411  {
412  // Start the current up to the previous:
413  for (int i = 0; i < iters.Count; ++i)
414  if (iters[i].Current != null)
415  if (iters[i].Current.Equals(item))
416  iters[i].Current = item.prev;
417  }
418 
419  if (item.next != null)
420  { // Connect both sides:
421  if (item.prev != null)
422  item.prev.next = item.next;
423  item.next.prev = item.prev;
424  }
425  else if (item.prev != null)
426  {
427  // Removing the tail item:
428  item.prev.next = default(T);
429  }
430  }
431  item.next = default(T);
432  item.prev = default(T);
433 
434  --count;
435  }
436 
437 
442  public void Clear()
443  {
444  count = 0;
445 
446  if (head == null)
447  return;
448 
449  T next;
450  cur = head;
451  head = default(T);
452 
453  do
454  {
455  next = cur.next;
456  cur.prev = default(T);
457  cur.next = default(T);
458  cur = next;
459  } while (cur != null);
460  }
461 }
462 
463 
464 
469 public struct Rect3D
470 {
471  Vector3 m_tl; // Top-left
472  Vector3 m_tr; // Top-right
473  Vector3 m_bl; // Bottom-left
474  Vector3 m_br; // Bottom-right
475  float m_width; // Width
476  float m_height; // Height
477 
478  public Vector3 topLeft { get { return m_tl; } }
479  public Vector3 topRight { get { return m_tr; } }
480  public Vector3 bottomLeft { get { return m_bl; } }
481  public Vector3 bottomRight { get { return m_br; } }
482 
483  public float width
484  {
485  get
486  {
487  if(float.IsNaN(m_width))
488  m_width = Vector3.Distance(m_tr, m_tl);
489  return m_width;
490  }
491  }
492 
493  public float height
494  {
495  get
496  {
497  if(float.IsNaN(m_height))
498  m_height = Vector3.Distance(m_tl, m_bl);
499  return m_height;
500  }
501  }
502 
510  public void FromPoints(Vector3 tl, Vector3 tr, Vector3 bl)
511  {
512  m_tl = tl;
513  m_tr = tr;
514  m_bl = bl;
515  m_br = tr + (bl - tl);
516 
517  m_width = m_height = float.NaN;
518  }
519 
527  public Rect3D(Vector3 tl, Vector3 tr, Vector3 bl)
528  {
529  m_tl = Vector3.zero;
530  m_tr = Vector3.zero;
531  m_bl = Vector3.zero;
532  m_br = Vector3.zero;
533  m_width = m_height = 0;
534  FromPoints(tl, tr, bl);
535  }
536 
542  public Rect3D(Rect r)
543  {
544  m_tl = Vector3.zero;
545  m_tr = Vector3.zero;
546  m_bl = Vector3.zero;
547  m_br = Vector3.zero;
548  m_width = m_height = 0;
549  FromRect(r);
550  }
551 
557  public Rect GetRect()
558  {
559  return Rect.MinMaxRect(m_bl.x, m_bl.y, m_tr.x, m_tl.y);
560  }
561 
566  public void FromRect(Rect r)
567  {
568  FromPoints( new Vector3(r.xMin, r.yMax, 0),
569  new Vector3(r.xMax, r.yMax, 0),
570  new Vector3(r.xMin, r.yMin, 0));
571  }
572 
579  public void MultFast(Matrix4x4 matrix)
580  {
581  m_tl = matrix.MultiplyPoint3x4(m_tl);
582  m_tr = matrix.MultiplyPoint3x4(m_tr);
583  m_bl = matrix.MultiplyPoint3x4(m_bl);
584  m_br = matrix.MultiplyPoint3x4(m_br);
585 
586  // Invalidate our width and height since it
587  // may have changed:
588  m_width = m_height = float.NaN;
589  }
590 
598  public static Rect3D MultFast(Rect3D rect, Matrix4x4 matrix)
599  {
600  Vector3 vTmpTl = matrix.MultiplyPoint3x4(rect.m_tl);
601  Vector3 vTmpTr = matrix.MultiplyPoint3x4(rect.m_tr);
602  Vector3 vTmpBl = matrix.MultiplyPoint3x4(rect.m_bl);
603 
604  float fXMin = Mathf.Min(Mathf.Min(vTmpBl.x, vTmpTl.x), vTmpTr.x);
605  float fXMax = Mathf.Max(Mathf.Max(vTmpBl.x, vTmpTl.x), vTmpTr.x);
606  float fYMin = Mathf.Min(Mathf.Min(vTmpBl.y, vTmpTl.y), vTmpTr.y);
607  float fYMax = Mathf.Max(Mathf.Max(vTmpBl.y, vTmpTl.y), vTmpTr.y);
608 
609  vTmpTl = new Vector3(fXMin, fYMax, vTmpTl.z);
610  vTmpTr = new Vector3(fXMax, fYMax, vTmpTl.z);
611  vTmpBl = new Vector3(fXMin, fYMin, vTmpTl.z);
612 
613  return new Rect3D(vTmpTl, vTmpTr, vTmpBl);
614  }
615 }
616 
617 
618 
619 
620 
621 
627 [ExecuteInEditMode]
628 public abstract class SpriteRoot : MonoBehaviour, IEZLinkedListItem<ISpriteAnimatable>, IUseCamera
629 {
633  public enum SPRITE_PLANE
634  {
635  XY,
636  XZ,
637  YZ
638  };
639 
651  public enum ANCHOR_METHOD
652  {
653  UPPER_LEFT,
654  UPPER_CENTER,
655  UPPER_RIGHT,
656  MIDDLE_LEFT,
657  MIDDLE_CENTER,
658  MIDDLE_RIGHT,
659  BOTTOM_LEFT,
660  BOTTOM_CENTER,
661  BOTTOM_RIGHT,
662  TEXTURE_OFFSET // The sprite is moved relative to the
663  // GameObject's center based on its
664  // position on the original texture.
665  }
666 
673  public enum WINDING_ORDER
674  {
675  CCW, // Counter-clockwise
676  CW // Clockwise
677  };
678 
684  public delegate void SpriteResizedDelegate(float newWidth, float newHeight, SpriteRoot sprite);
685 
686 
687  //---------------------------------------
688  // Data members:
689  //---------------------------------------
690 
696  public bool managed = false;
697 
703 
704  // Is set to try by the managing SpriteManager when this
705  // sprite has been added.
706  protected bool addedToManager = false;
707 
711  public int drawLayer;
712 
716  public bool persistent = false;
717 
721  public SPRITE_PLANE plane = SPRITE_PLANE.XY;// The plane in which the sprite will be drawn
722 
727  public WINDING_ORDER winding = WINDING_ORDER.CW;
728 
732  public float width; // Width and Height of the sprite in worldspace units
733 
737  public float height;
738 
744  public Vector2 bleedCompensation; // Will contract the UV edges of the sprite to prevent "bleeding" from neighboring pixels, especially when mipmapping
745 
749  public ANCHOR_METHOD anchor = ANCHOR_METHOD.TEXTURE_OFFSET;
750 
762  public bool pixelPerfect = false; // Automatically sizes the sprite so that it will display pixel-perfect on-screen
763 
771  public bool autoResize = false; // Automatically resizes the sprite based on its new UV dimensions compared to its previous dimensions
772 
773  protected Vector2 bleedCompensationUV; // UV-space version of bleedCompensation
774  protected Vector2 bleedCompensationUVMax; // Same, but used for the "max" parts of the UV rect (is double bleedCompensationUV, and negated).
775  protected SPRITE_FRAME frameInfo = new SPRITE_FRAME(0); // All the info we need to define our current frame
776  protected Rect uvRect; // UVs of the current frame
777  protected Vector2 scaleFactor = new Vector2(0.5f, 0.5f);// Scale factor of the current frame (see SPRITE_FRAME)
778  protected Vector2 topLeftOffset = new Vector2(-1f, 1f); // Top-left offset of the current frame (see SPRITE_FRAME)
779  protected Vector2 bottomRightOffset = new Vector2(1f, -1f); // Bottom-right offset of the current frame (see SPRITE_FRAME)
780  /*
781  protected Vector2 lowerLeftUV; // UV coordinate for the upper-left corner of the sprite
782  protected Vector2 uvDimensions; // Distance from the upper-left UV to place the other UVs
783  */
784  protected Vector3 topLeft; // The adjustment needed for the current anchoring scheme
785  protected Vector3 bottomRight; // The adjustment needed for the current anchoring scheme
786 
787  protected Vector3 unclippedTopLeft; // Where the corner would be without any clipping or trimming.
788  protected Vector3 unclippedBottomRight; // Where the corner would be without any clipping or trimming.
789 
790  // (top-left) Will hold values from 0-1 that indicate by how much the sprite should be "truncated" on each side.
791  protected Vector2 tlTruncate = new Vector2(1f, 1f);
792  // (bottom-right) "
793  protected Vector2 brTruncate = new Vector2(1f, 1f);
794  protected bool truncated; // Keeps track of whether truncation is to be applied - gets set to true when any truncation value is set to anything other than 1.0.
795  protected Rect3D clippingRect; // Rect against which the sprite will be clipped.
796  protected Rect localClipRect; // Will hold clippingRect in local space.
797  protected float leftClipPct = 1f; // The percentage of the sprite that remains unclipped
798  protected float rightClipPct= 1f; // The percentage of the sprite that remains unclipped
799  protected float topClipPct = 1f; // The percentage of the sprite that remains unclipped
800  protected float bottomClipPct = 1f; // The percentage of the sprite that remains unclipped
801  protected bool clipped = false; // Keeps track of whether we are to be clipped by a bounding box
802 
803  [HideInInspector]
804  public bool billboarded = false; // Is the sprite to be billboarded? (not currently supported)
805  [System.NonSerialized]
806  public bool isClone = false; // Set this to true when the sprite has been instantiated from another sprite in the scene.
807  [System.NonSerialized]
808  public bool uvsInitialized = false; // This is set to true when the sprite's UVs have been initialized.
809  protected bool m_started = false; // This gets set when the sprite has entered Start()
810  protected bool deleted = false; // This is set to true when the sprite's mesh has been deleted in preparation for destruction.
811 
816  public Vector3 offset = new Vector3(); // Offset of sprite from center of client GameObject
817 
824  public Color color = Color.white; // The color to be used by all four vertices
825 
826  // Reference to the class that will encapsulate
827  // all mesh operations. This will allow us to
828  // decide later whether this will be a batched
829  // or a managed sprite:
830  protected ISpriteMesh m_spriteMesh;
831 
832  // References to other sprite objects used
833  // for stepping through sprite lists:
834  protected ISpriteAnimatable m_prev;
835  protected ISpriteAnimatable m_next;
836 
837  // Vars that make pixel-perfect sizing and
838  // automatic sizing work:
839  protected Vector2 screenSize; // The size of the screen in pixels
840  public Camera renderCamera;
841  protected Vector2 sizeUnitsPerUV; // The width and height of the sprite, in local units, per UV. This is used with auto-resize to determine what the width/height of the sprite should be given its current UVs.
842  [HideInInspector]
843  public Vector2 pixelsPerUV; // The number of pixels in both axes per UV unit
844  protected float worldUnitsPerScreenPixel; // The number of world units in both axes per screen pixel
845 
846  protected SpriteResizedDelegate resizedDelegate = null; // Delegate to be called upon sprite resizing.
847 
848 
849  // Reference to the attached EZScreenPlacement component, if any
850  protected EZScreenPlacement screenPlacer;
851 
852  // Start-up state vars:
856  public bool hideAtStart = false;
857 
858  // Will tell us if we INTEND for the sprite to be hideAtStart,
859  // so that if the mesh renderer happens to be incidentally
860  // disabled, such as on a prefab that is uninstantiated,
861  // we don't mistake that for being hideAtStart.
862  // We set this when we intentionally hide the sprite.
863  protected bool m_hidden = false;
864 
868  public bool ignoreClipping = false;
869 
870 
871  // Used to help us update the sprite's
872  // appearance in the editor:
873  protected SpriteRootMirror mirror = null;
874 
875  // Working vars:
876  protected Vector2 tempUV;
877  protected Mesh oldMesh;
878  protected SpriteManager savedManager; // When we're disabled, save a backup of the manager we used, so if it wasn't a deletion, we can re-add ourselves back on enable.
879 
880 
881  protected virtual void Awake()
882  {
883  // This will get reset SetCamera() in Start() (if running the game),
884  // or in Start() via DoMirror() if the game isn't running.
885  screenSize.x = 0;
886  screenSize.y = 0;
887 
888  // Determine if we are a clone:
889 #if UNITY_FLASH
890  if (StringEndsWith(name, "(Clone)"))
891 #else
892  if (name.EndsWith("(Clone)"))
893 #endif
894  isClone = true;
895 
896  if (!managed)
897  {
898  MeshFilter mf = (MeshFilter)GetComponent(typeof(MeshFilter));
899  if (mf != null)
900  {
901  oldMesh = mf.sharedMesh;
902  mf.sharedMesh = null;
903  }
904 
905  AddMesh();
906  }
907  else
908  {
909  if (manager != null)
910  {
911  manager.AddSprite(this);
912  }
913  else
914  Debug.LogError("Managed sprite \"" + name + "\" has not been assigned to a SpriteManager!");
915  }
916  }
917 
918 
919  public virtual void Start()
920  {
921  m_started = true;
922 
923  if (!managed)
924  {
925  if (Application.isPlaying)
926  {
927  // Free the default sharedMesh:
928  if (!isClone)
929  Destroy(oldMesh);
930  oldMesh = null;
931  }
932  }
933  else if (m_spriteMesh != null)
934  Init();
935 
936  // If this sprite is to persist, prevent it from being
937  // destroyed on load:
938  if (persistent)
939  {
940  DontDestroyOnLoad(this);
941  if (m_spriteMesh is SpriteMesh)
942  ((SpriteMesh)m_spriteMesh).SetPersistent();
943  }
944 
945  if (m_spriteMesh == null && !managed)
946  AddMesh();
947 
948  // Calculate our original dimensions per UV:
949  CalcSizeUnitsPerUV();
950 
951  if (m_spriteMesh != null)
952  {
953  if (m_spriteMesh.texture != null)
954  {
955  SetPixelToUV(m_spriteMesh.texture);
956  }
957  }
958 
959  if (renderCamera == null)
960  renderCamera = Camera.main;
961 
962  SetCamera(renderCamera);
963 
964  if (clipped)
965  UpdateUVs();
966 
967  if(hideAtStart)
968  Hide(true);
969  }
970 
971 
972  protected void CalcSizeUnitsPerUV()
973  {
974  Rect uvs = frameInfo.uvs;
975 
976  // Avoid a divide-by-zero and the problem that will
977  // set our dimensions to 0 when the script
978  // is re-imported:
979  if (uvs.width == 0 || uvs.height == 0 || (uvs.xMin == 1f && uvs.yMin == 1f))
980  {
981  sizeUnitsPerUV = Vector2.zero;
982  return;
983  }
984 
985  sizeUnitsPerUV.x = width / uvs.width;
986  sizeUnitsPerUV.y = height / uvs.height;
987  }
988 
989 
990  protected virtual void Init()
991  {
992  // Get our screen placer, if any:
993  screenPlacer = (EZScreenPlacement)GetComponent(typeof(EZScreenPlacement));
994 
995  //if(!Application.isPlaying)
996  {
997  if (screenPlacer != null)
998  screenPlacer.SetCamera(renderCamera);
999  }
1000 
1001  if(m_spriteMesh != null)
1002  {
1003  // If this sprite is to persist, prevent it from being
1004  // destroyed on load:
1005  if (persistent && !managed)
1006  {
1007  DontDestroyOnLoad(((SpriteMesh)m_spriteMesh).mesh);
1008  }
1009 
1010  if (m_spriteMesh.texture != null)
1011  {
1012  SetPixelToUV(m_spriteMesh.texture);
1013  }
1014 
1015  m_spriteMesh.Init();
1016  }
1017 
1018  // Re-calculate it here since Start() won't be called
1019  // while in-editor:
1020  if (!Application.isPlaying)
1021  CalcSizeUnitsPerUV();
1022  }
1023 
1027  public virtual void Clear()
1028  {
1029  billboarded = false;
1030  SetColor(Color.white);
1031  offset = Vector3.zero;
1032  }
1033 
1038  public virtual void Copy(SpriteRoot s)
1039  {
1040  // Copy the material:
1041  if (!managed)
1042  {
1043  if (m_spriteMesh != null && s.spriteMesh != null)
1044  ((SpriteMesh)m_spriteMesh).material = s.spriteMesh.material;
1045  else if (!s.managed)
1046  {
1047  renderer.sharedMaterial = s.renderer.sharedMaterial;
1048  }
1049  }
1050 
1051  drawLayer = s.drawLayer;
1052 
1053  // Copy the camera:
1054  if (s.renderCamera != null)
1055  SetCamera(s.renderCamera);
1056  if (renderCamera == null)
1057  renderCamera = Camera.main;
1058 
1059  if (m_spriteMesh != null)
1060  {
1061  if (m_spriteMesh.texture != null)
1062  SetPixelToUV(m_spriteMesh.texture);
1063  else if (!managed)
1064  {
1065  ((SpriteMesh)m_spriteMesh).material = renderer.sharedMaterial;
1066  SetPixelToUV(m_spriteMesh.texture);
1067  }
1068  }
1069 
1070  plane = s.plane;
1071  winding = s.winding;
1072  offset = s.offset;
1073  anchor = s.anchor;
1074  bleedCompensation = s.bleedCompensation;
1075  autoResize = s.autoResize;
1076  pixelPerfect = s.pixelPerfect;
1077  ignoreClipping = s.ignoreClipping;
1078 
1079  uvRect = s.uvRect;
1080  scaleFactor = s.scaleFactor;
1081  topLeftOffset = s.topLeftOffset;
1082  bottomRightOffset = s.bottomRightOffset;
1083 
1084  width = s.width;
1085  height = s.height;
1086 
1087  SetColor(s.color);
1088  }
1089 
1090  // Derived versions should calculate UVs
1091  // in a manner appropriate to the derived
1092  // class. Be sure to call the base
1093  // implementation as well at the end.
1094  public virtual void InitUVs()
1095  {
1096  // Copy over any value in frameInfo:
1097  uvRect = frameInfo.uvs;
1098  }
1099 
1105  public virtual void Delete()
1106  {
1107  deleted = true;
1108 
1109  // Destroy our mesh:
1110  if (!managed && Application.isPlaying)
1111  {
1112  if (spriteMesh != null)
1113  {
1114  Destroy(((SpriteMesh)spriteMesh).mesh);
1115  ((SpriteMesh)spriteMesh).mesh = null;
1116  }
1117  }
1118  }
1119 
1120  protected virtual void OnEnable()
1121  {
1122  // Only do this at runtime, or else some managed
1123  // sprites will disappear inexplicably:
1124  //if (Application.isPlaying)
1125  {
1126  if (managed && manager != null && m_started)
1127  {
1128  SPRITE_FRAME oldFrame = frameInfo;
1129  manager.AddSprite(this);
1130  // Restore our previous frame info since
1131  // AddSprite() re-inits our UVs:
1132  frameInfo = oldFrame;
1133  uvRect = frameInfo.uvs;
1134  SetBleedCompensation();
1135  }
1136  else if (savedManager != null)
1137  {
1138  savedManager.AddSprite(this);
1139  }
1140  }
1141  }
1142 
1143  protected virtual void OnDisable()
1144  {
1145  // Only do this at runtime, or else some managed
1146  // sprites will disappear inexplicably:
1147  //if (Application.isPlaying)
1148  {
1149  // Make sure if we are being deleted that
1150  // we are removed from the manager so that
1151  // we don't wind up with a null bone:
1152  if (managed && manager != null)
1153  {
1154  savedManager = manager;
1155  manager.RemoveSprite(this);
1156  }
1157  }
1158  }
1159 
1160  public virtual void OnDestroy()
1161  {
1162  Delete();
1163  }
1164 
1165 
1166  // Sets the edge positions needed to properly
1167  // orient our sprite according to our anchoring
1168  // method:
1169  public void CalcEdges()
1170  {
1171  switch (anchor)
1172  {
1173  case ANCHOR_METHOD.TEXTURE_OFFSET:
1174  // sizeFactor is a number that, when multiplied by the
1175  // width and height of the sprite, yields half the total
1176  // size the sprite would be if it occupied the entire
1177  // original texture (half so we avoid an additional
1178  // mult by 0.5 when calculating our edges):
1179 
1180  // halfSizeIfFull is half the size the sprite would be
1181  // if the entire area of the original texture were being
1182  // used:
1183  Vector2 halfSizeIfFull;
1184  halfSizeIfFull.x = width * scaleFactor.x;
1185  halfSizeIfFull.y = height * scaleFactor.y;
1186 
1187  // Adjust the offsets if the width has already
1188  // been adjusted via pixelPerfect or autoResize:
1189  /*
1190  if((pixelPerfect || autoResize) && truncated)
1191  {
1192  topLeftOffset.x = bottomRightOffset.x - (bottomRightOffset.x - topLeftOffset.x) * tlTruncate.x;
1193  topLeftOffset.y = bottomRightOffset.y - (bottomRightOffset.y - topLeftOffset.y) * tlTruncate.y;
1194  bottomRightOffset.x = topLeftOffset.x - (topLeftOffset.x - bottomRightOffset.x) * brTruncate.x;
1195  bottomRightOffset.y = topLeftOffset.y - (topLeftOffset.y - bottomRightOffset.y) * brTruncate.y;
1196  }
1197  */
1198 
1199  topLeft.x = halfSizeIfFull.x * topLeftOffset.x;
1200  topLeft.y = halfSizeIfFull.y * topLeftOffset.y;
1201  bottomRight.x = halfSizeIfFull.x * bottomRightOffset.x;
1202  bottomRight.y = halfSizeIfFull.y * bottomRightOffset.y;
1203  break;
1204  case ANCHOR_METHOD.UPPER_LEFT:
1205  topLeft.x = 0;
1206  topLeft.y = 0;
1207  bottomRight.x = width;
1208  bottomRight.y = -height;
1209  break;
1210  case ANCHOR_METHOD.UPPER_CENTER:
1211  topLeft.x = width * -0.5f;
1212  topLeft.y = 0;
1213  bottomRight.x = width * 0.5f;
1214  bottomRight.y = -height;
1215  break;
1216  case ANCHOR_METHOD.UPPER_RIGHT:
1217  topLeft.x = -width;
1218  topLeft.y = 0;
1219  bottomRight.x = 0;
1220  bottomRight.y = -height;
1221  break;
1222  case ANCHOR_METHOD.MIDDLE_LEFT:
1223  topLeft.x = 0;
1224  topLeft.y = height * 0.5f;
1225  bottomRight.x = width;
1226  bottomRight.y = height * -0.5f;
1227  break;
1228  case ANCHOR_METHOD.MIDDLE_CENTER:
1229  topLeft.x = width * -0.5f;
1230  topLeft.y = height * 0.5f;
1231  bottomRight.x = width * 0.5f;
1232  bottomRight.y = height * -0.5f;
1233  break;
1234  case ANCHOR_METHOD.MIDDLE_RIGHT:
1235  topLeft.x = -width;
1236  topLeft.y = height * 0.5f;
1237  bottomRight.x = 0;
1238  bottomRight.y = height * -0.5f;
1239  break;
1240  case ANCHOR_METHOD.BOTTOM_LEFT:
1241  topLeft.x = 0;
1242  topLeft.y = height;
1243  bottomRight.x = width;
1244  bottomRight.y = 0;
1245  break;
1246  case ANCHOR_METHOD.BOTTOM_CENTER:
1247  topLeft.x = width * -0.5f;
1248  topLeft.y = height;
1249  bottomRight.x = width * 0.5f;
1250  bottomRight.y = 0;
1251  break;
1252  case ANCHOR_METHOD.BOTTOM_RIGHT:
1253  topLeft.x = -width;
1254  topLeft.y = height;
1255  bottomRight.x = 0;
1256  bottomRight.y = 0;
1257  break;
1258  }
1259 
1260  unclippedTopLeft = topLeft + offset;
1261  unclippedBottomRight = bottomRight + offset;
1262 
1263  if (truncated)
1264  {
1265  // If we haven't already adjusted the size
1266  // based on our UV truncation:
1267  topLeft.x = bottomRight.x - (bottomRight.x - topLeft.x) * tlTruncate.x;
1268  topLeft.y = bottomRight.y - (bottomRight.y - topLeft.y) * tlTruncate.y;
1269  bottomRight.x = topLeft.x - (topLeft.x - bottomRight.x) * brTruncate.x;
1270  bottomRight.y = topLeft.y - (topLeft.y - bottomRight.y) * brTruncate.y;
1271  }
1272 
1273  // If we're clipping and our sprite isn't of 0 size on one or more sides:
1274  if(clipped && bottomRight.x - topLeft.x != 0 && topLeft.y - bottomRight.y != 0)
1275  {
1276  Vector3 origTL = topLeft;
1277  Vector3 origBR = bottomRight;
1278  Rect tempClipRect = localClipRect;
1279 
1280  // Account for any offset:
1281  tempClipRect.x -= offset.x;
1282  tempClipRect.y -= offset.y;
1283 
1284  // Clip the sprite horizontally:
1285  if (topLeft.x < tempClipRect.x)
1286  {
1287  // Trim the sprite:
1288  leftClipPct = 1f - (tempClipRect.x - origTL.x) / (origBR.x - origTL.x);
1289  topLeft.x = Mathf.Clamp(tempClipRect.x, origTL.x, origBR.x);
1290 
1291  if (leftClipPct <= 0)
1292  topLeft.x = bottomRight.x = tempClipRect.x;
1293  }
1294  else
1295  leftClipPct = 1;
1296 
1297  if (bottomRight.x > tempClipRect.xMax)
1298  {
1299  // Trim the sprite:
1300  rightClipPct = (tempClipRect.xMax - origTL.x) / (origBR.x - origTL.x);
1301  bottomRight.x = Mathf.Clamp(tempClipRect.xMax, origTL.x, origBR.x);
1302 
1303  if (rightClipPct <= 0)
1304  bottomRight.x = topLeft.x = tempClipRect.xMax;
1305  }
1306  else
1307  rightClipPct = 1;
1308 
1309  // Clip the sprite vertically:
1310  if (topLeft.y > tempClipRect.yMax)
1311  {
1312  // Trim the sprite:
1313  topClipPct = (tempClipRect.yMax - origBR.y) / (origTL.y - origBR.y);
1314  topLeft.y = Mathf.Clamp(tempClipRect.yMax, origBR.y, origTL.y);
1315 
1316  if (topClipPct <= 0)
1317  topLeft.y = bottomRight.y = tempClipRect.yMax;
1318  }
1319  else
1320  topClipPct = 1;
1321 
1322  if (bottomRight.y < tempClipRect.y)
1323  {
1324  // Trim the sprite:
1325  bottomClipPct = 1f - (tempClipRect.y - origBR.y) / (origTL.y - origBR.y);
1326  bottomRight.y = Mathf.Clamp(tempClipRect.y, origBR.y, origTL.y);
1327 
1328  if (bottomClipPct <= 0)
1329  bottomRight.y = topLeft.y = tempClipRect.y;
1330  }
1331  else
1332  bottomClipPct = 1;
1333  }
1334 
1335  // Reverse the X positions if the winding order is CCW:
1336  if(winding == WINDING_ORDER.CCW)
1337  {
1338  topLeft.x *= -1f;
1339  bottomRight.x *= -1f;
1340  }
1341  }
1342 
1343  // Sets the width and height of the sprite based upon
1344  // the change in its UV dimensions
1350  public void CalcSize()
1351  {
1352  // Make sure we don't have a zero-sized UV rect:
1353  if (uvRect.width == 0)
1354  uvRect.width = 0.0000001f;
1355  if (uvRect.height == 0)
1356  uvRect.height = 0.0000001f;
1357 
1358  if (pixelPerfect)
1359  {
1360  // Calculate the size based on the camera's disposition:
1361  //worldUnitsPerScreenPixel = (renderCamera.orthographicSize * 2f) / screenSize.y;
1362  width = worldUnitsPerScreenPixel * frameInfo.uvs.width * pixelsPerUV.x;
1363  height = worldUnitsPerScreenPixel * frameInfo.uvs.height * pixelsPerUV.y;
1364  }
1365  else if (autoResize) // Else calculate the size based on the change in UV dimensions:
1366  {
1367  if (sizeUnitsPerUV.x != 0 && sizeUnitsPerUV.y != 0)
1368  {
1369  // Change the width and height according to the new UV dimensions:
1370  width = frameInfo.uvs.width * sizeUnitsPerUV.x;
1371  height = frameInfo.uvs.height * sizeUnitsPerUV.y;
1372  }
1373  }
1374 
1375  SetSize(width, height);
1376  }
1377 
1384  public virtual void SetSize(float w, float h)
1385  {
1386  if (m_spriteMesh == null)
1387  return;
1388 
1389  width = w;
1390  height = h;
1391 
1392  CalcSizeUnitsPerUV();
1393 
1394  switch (plane)
1395  {
1396  case SPRITE_PLANE.XY:
1397  SetSizeXY(width, height);
1398  break;
1399  case SPRITE_PLANE.XZ:
1400  SetSizeXZ(width, height);
1401  break;
1402  case SPRITE_PLANE.YZ:
1403  SetSizeYZ(width, height);
1404  break;
1405  }
1406 
1407  if (resizedDelegate != null)
1408  resizedDelegate(width, height, this);
1409  }
1410 
1411  // Sets the physical dimensions of the sprite in the XY plane:
1412  protected void SetSizeXY(float w, float h)
1413  {
1414  CalcEdges();
1415 
1416  Vector3[] vertices = m_spriteMesh.vertices;
1417 
1418  if(winding == WINDING_ORDER.CW)
1419  {
1420  // Upper-left
1421  vertices[0].x = offset.x + topLeft.x;
1422  vertices[0].y = offset.y + topLeft.y;
1423  vertices[0].z = offset.z;
1424 
1425  // Lower-left
1426  vertices[1].x = offset.x + topLeft.x;
1427  vertices[1].y = offset.y + bottomRight.y;
1428  vertices[1].z = offset.z;
1429 
1430  // Lower-right
1431  vertices[2].x = offset.x + bottomRight.x;
1432  vertices[2].y = offset.y + bottomRight.y;
1433  vertices[2].z = offset.z;
1434 
1435  // Upper-right
1436  vertices[3].x = offset.x + bottomRight.x;
1437  vertices[3].y = offset.y + topLeft.y;
1438  vertices[3].z = offset.z;
1439  }
1440  else
1441  {
1442  // Upper-left
1443  vertices[0].x = offset.x + topLeft.x;
1444  vertices[0].y = offset.y + topLeft.y;
1445  vertices[0].z = offset.z;
1446 
1447  // Lower-left
1448  vertices[1].x = offset.x + topLeft.x;
1449  vertices[1].y = offset.y + bottomRight.y;
1450  vertices[1].z = offset.z;
1451 
1452  // Lower-right
1453  vertices[2].x = offset.x + bottomRight.x;
1454  vertices[2].y = offset.y + bottomRight.y;
1455  vertices[2].z = offset.z;
1456 
1457  // Upper-right
1458  vertices[3].x = offset.x + bottomRight.x;
1459  vertices[3].y = offset.y + topLeft.y;
1460  vertices[3].z = offset.z;
1461 
1462  }
1463 
1464  m_spriteMesh.UpdateVerts();
1465  }
1466 
1467  // Sets the physical dimensions of the sprite in the XZ plane:
1468  protected void SetSizeXZ(float w, float h)
1469  {
1470  CalcEdges();
1471 
1472  Vector3[] vertices = m_spriteMesh.vertices;
1473 
1474  // Upper-left
1475  vertices[0].x = offset.x + topLeft.x;
1476  vertices[0].y = offset.y;
1477  vertices[0].z = offset.z + topLeft.y;
1478 
1479  // Lower-left
1480  vertices[1].x = offset.x + topLeft.x;
1481  vertices[1].y = offset.y;
1482  vertices[1].z = offset.z + bottomRight.y;
1483 
1484  // Lower-right
1485  vertices[2].x = offset.x + bottomRight.x;
1486  vertices[2].y = offset.y;
1487  vertices[2].z = offset.z + bottomRight.y;
1488 
1489  // Upper-right
1490  vertices[3].x = offset.x + bottomRight.x;
1491  vertices[3].y = offset.y;
1492  vertices[3].z = offset.z + topLeft.y;
1493 
1494  m_spriteMesh.UpdateVerts();
1495  }
1496 
1497  // Sets the physical dimensions of the sprite in the YZ plane:
1498  protected void SetSizeYZ(float w, float h)
1499  {
1500  CalcEdges();
1501 
1502  Vector3[] vertices = m_spriteMesh.vertices;
1503 
1504  // Upper-left
1505  vertices[0].x = offset.x;
1506  vertices[0].y = offset.y + topLeft.y;
1507  vertices[0].z = offset.z + topLeft.x;
1508 
1509  // Lower-left
1510  vertices[1].x = offset.x;
1511  vertices[1].y = offset.y + bottomRight.y;
1512  vertices[1].z = offset.z + topLeft.x;
1513 
1514  // Lower-right
1515  vertices[2].x = offset.x;
1516  vertices[2].y = offset.y + bottomRight.y;
1517  vertices[2].z = offset.z + bottomRight.x;
1518 
1519  // Upper-right
1520  vertices[3].x = offset.x;
1521  vertices[3].y = offset.y + topLeft.y;
1522  vertices[3].z = offset.z + bottomRight.x;
1523 
1524  m_spriteMesh.UpdateVerts();
1525  }
1526 
1533  public virtual void TruncateRight(float pct)
1534  {
1535  tlTruncate.x = 1f;
1536  brTruncate.x = Mathf.Clamp01(pct);
1537  if (brTruncate.x < 1f || tlTruncate.y < 1f || brTruncate.y < 1f)
1538  truncated = true;
1539  else
1540  {
1541  Untruncate();
1542  return;
1543  }
1544 
1545  UpdateUVs();
1546  CalcSize();
1547  }
1548 
1555  public virtual void TruncateLeft(float pct)
1556  {
1557  tlTruncate.x = Mathf.Clamp01(pct);
1558  brTruncate.x = 1f;
1559  if (tlTruncate.x < 1f || tlTruncate.y < 1f || brTruncate.y < 1f)
1560  truncated = true;
1561  else
1562  {
1563  Untruncate();
1564  return;
1565  }
1566 
1567  UpdateUVs();
1568  CalcSize();
1569  }
1570 
1577  public virtual void TruncateTop(float pct)
1578  {
1579  tlTruncate.y = Mathf.Clamp01(pct);
1580  brTruncate.y = 1f;
1581  if (tlTruncate.y < 1f || tlTruncate.x < 1f || brTruncate.x < 1f)
1582  truncated = true;
1583  else
1584  {
1585  Untruncate();
1586  return;
1587  }
1588 
1589  UpdateUVs();
1590  CalcSize();
1591  }
1592 
1599  public virtual void TruncateBottom(float pct)
1600  {
1601  tlTruncate.y = 1f;
1602  brTruncate.y = Mathf.Clamp01(pct);
1603  if (brTruncate.y < 1f || tlTruncate.x < 1f || brTruncate.x < 1f)
1604  truncated = true;
1605  else
1606  {
1607  Untruncate();
1608  return;
1609  }
1610 
1611  UpdateUVs();
1612  CalcSize();
1613  }
1614 
1618  public virtual void Untruncate()
1619  {
1620  tlTruncate.x = 1f;
1621  tlTruncate.y = 1f;
1622  brTruncate.x = 1f;
1623  brTruncate.y = 1f;
1624  truncated = false;
1625 
1626  uvRect = frameInfo.uvs;// Need to make sure we reset
1627 
1628  SetBleedCompensation();// Redo bleed compensation since we just re-copied the raw framinfo which lacks this
1629  CalcSize();
1630  }
1631 
1636  public virtual void Unclip()
1637  {
1638  if (ignoreClipping)
1639  return;
1640 
1641  leftClipPct = 1f;
1642  rightClipPct = 1f;
1643  topClipPct = 1f;
1644  bottomClipPct = 1f;
1645  clipped = false;
1646  uvRect = frameInfo.uvs;// Need to make sure we reset
1647  SetBleedCompensation();// Redo bleed compensation since we just re-copied the raw framinfo which lacks this
1648  CalcSize();
1649  }
1650 
1654  public virtual void UpdateUVs()
1655  {
1656  scaleFactor = frameInfo.scaleFactor;
1657  topLeftOffset = frameInfo.topLeftOffset;
1658  bottomRightOffset = frameInfo.bottomRightOffset;
1659 
1660  // Truncate our UVs if needed:
1661  if (truncated)
1662  {
1663  uvRect.x = frameInfo.uvs.xMax + bleedCompensationUV.x - (frameInfo.uvs.width) * tlTruncate.x * leftClipPct;
1664  uvRect.y = frameInfo.uvs.yMax + bleedCompensationUV.y - (frameInfo.uvs.height) * brTruncate.y * bottomClipPct;
1665  uvRect.xMax = frameInfo.uvs.x + bleedCompensationUVMax.x + (frameInfo.uvs.width) * brTruncate.x * rightClipPct;
1666  uvRect.yMax = frameInfo.uvs.y + bleedCompensationUVMax.y + (frameInfo.uvs.height) * tlTruncate.y * topClipPct;
1667  }
1668  else if(clipped)
1669  {
1670  Rect baseUV = Rect.MinMaxRect(frameInfo.uvs.x + bleedCompensationUV.x, frameInfo.uvs.y + bleedCompensationUV.y, frameInfo.uvs.xMax + bleedCompensationUVMax.x, frameInfo.uvs.yMax + bleedCompensationUVMax.y);
1671  uvRect.x = Mathf.Lerp(baseUV.xMax, baseUV.x, leftClipPct);
1672  uvRect.y = Mathf.Lerp(baseUV.yMax, baseUV.y, bottomClipPct);
1673  uvRect.xMax = Mathf.Lerp(baseUV.x, baseUV.xMax, rightClipPct);
1674  uvRect.yMax = Mathf.Lerp(baseUV.y, baseUV.yMax, topClipPct);
1675  }
1676 
1677  if (m_spriteMesh == null)
1678  return;
1679 
1680  Vector2[] uvs = m_spriteMesh.uvs;
1681 
1682 // if (winding == WINDING_ORDER.CW)
1683  {
1684  uvs[0].x = uvRect.x; uvs[0].y = uvRect.yMax;
1685  uvs[1].x = uvRect.x; uvs[1].y = uvRect.y;
1686  uvs[2].x = uvRect.xMax; uvs[2].y = uvRect.y;
1687  uvs[3].x = uvRect.xMax; uvs[3].y = uvRect.yMax;
1688  }
1689 /* Commented out because this should now be addressed by
1690  * the fact that we reverse the X position of the vertices.
1691  else
1692  {
1693  uvs[3].x = uvRect.x; uvs[3].y = uvRect.yMax;
1694  uvs[2].x = uvRect.x; uvs[2].y = uvRect.y;
1695  uvs[1].x = uvRect.xMax; uvs[1].y = uvRect.y;
1696  uvs[0].x = uvRect.xMax; uvs[0].y = uvRect.yMax;
1697  }
1698 */
1699 
1700  m_spriteMesh.UpdateUVs();
1701  }
1702 
1703  // Applies the transform of the client GameObject and stores
1704  // the results in the associated vertices of the overall mesh:
1705  public void TransformBillboarded(Transform t)
1706  { //Todo
1707  /*
1708  Vector3 pos = clientTransform.position;
1709 
1710  meshVerts[mv1] = pos + t.InverseTransformDirection(v1);
1711  meshVerts[mv2] = pos + t.InverseTransformDirection(v2);
1712  meshVerts[mv3] = pos + t.InverseTransformDirection(v3);
1713  meshVerts[mv4] = pos + t.InverseTransformDirection(v4);
1714 
1715  m_manager.UpdatePositions();
1716  */
1717  }
1718 
1723  public virtual void SetColor(Color c)
1724  {
1725  color = c;
1726 
1727  // Update vertex colors:
1728  if(m_spriteMesh != null)
1729  m_spriteMesh.UpdateColors(color);
1730  }
1731 
1735  public Color Color
1736  {
1737  get { return color; }
1738  set { SetColor(value); }
1739  }
1740 
1741  // Sets the number of pixels per UV unit:
1742  public void SetPixelToUV(int texWidth, int texHeight)
1743  {
1744  Vector2 oldPPUV = pixelsPerUV;
1745 
1746  pixelsPerUV.x = texWidth;
1747  pixelsPerUV.y = texHeight;
1748 
1749  // Recalculate our size-per-UV based on the
1750  // current size-to-pixel ratio.
1751  // NOTE: Assumes the sprite will be resized
1752  // via CalcSize() immediately after this has
1753  // been called.
1754  Rect uvs = frameInfo.uvs;
1755  // Avoid NaN/Infinity:
1756  if (uvs.width == 0 || uvs.height == 0 || oldPPUV.x == 0 || oldPPUV.y == 0)
1757  return;
1758  Vector2 sizePerTexel = new Vector2(width / (uvs.width * oldPPUV.x), height / (uvs.height * oldPPUV.y));
1759  sizeUnitsPerUV.x = sizePerTexel.x * pixelsPerUV.x;
1760  sizeUnitsPerUV.y = sizePerTexel.y * pixelsPerUV.y;
1761  }
1762 
1763  // Sets the number of pixels per UV unit:
1764  public void SetPixelToUV(Texture tex)
1765  {
1766  if (tex == null)
1767  return;
1768  SetPixelToUV(tex.width, tex.height);
1769  }
1770 
1775  public void CalcPixelToUV()
1776  {
1777  if(managed)
1778  {
1779  if (spriteMesh != null && spriteMesh.material != null && spriteMesh.material.mainTexture != null)
1780  SetPixelToUV(spriteMesh.material.mainTexture);
1781  }
1782  else
1783  {
1784  if (renderer != null && renderer.sharedMaterial != null && renderer.sharedMaterial.mainTexture != null)
1785  SetPixelToUV(renderer.sharedMaterial.mainTexture);
1786  }
1787  }
1788 
1795  public void SetTexture(Texture2D tex)
1796  {
1797  if (managed || renderer == null)
1798  return;
1799 
1800  renderer.material.mainTexture = tex;
1801 
1802  SetPixelToUV(tex);
1803 
1804  SetCamera();
1805  }
1806 
1807 
1813  public void SetMaterial(Material mat)
1814  {
1815  if (managed || renderer == null)
1816  return;
1817 
1818  renderer.sharedMaterial = mat;
1819 
1820  SetPixelToUV(mat.mainTexture);
1821 
1822  SetCamera();
1823  }
1824 
1830  public virtual Camera RenderCamera
1831  {
1832  get { return renderCamera; }
1833  set
1834  {
1835  renderCamera = value;
1836  SetCamera(value);
1837  }
1838  }
1839 
1847  public void UpdateCamera()
1848  {
1849  SetCamera(renderCamera);
1850  }
1851 
1857  public void SetCamera()
1858  {
1859  SetCamera(renderCamera);
1860  }
1861 
1862  // Sets the camera to use when calculating
1863  // pixel-perfect sprite size:
1869  public virtual void SetCamera(Camera c)
1870  {
1871  if (c == null || !m_started)
1872  return;
1873 
1874  float dist;
1875  Plane nearPlane = new Plane(c.transform.forward, c.transform.position);
1876 
1877  if (!Application.isPlaying)
1878  {
1879  // If the screenSize has never been initialized,
1880  // or if this is a different camera, get what
1881  // values we can get, otherwise just keep the
1882  // values we got during our last run:
1883 #if !(UNITY_3_0 || UNITY_3_1 || UNITY_3_2 || UNITY_3_3 || UNITY_3_4 || UNITY_3_5 || UNITY_3_6 || UNITY_3_7 || UNITY_3_8 || UNITY_3_9 || 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)
1884  if ((screenSize.x == 0 || c != renderCamera) && c.pixelHeight > 100)
1885 #endif
1886  {
1887  screenSize.x = c.pixelWidth;
1888  screenSize.y = c.pixelHeight;
1889  }
1890 
1891  if (screenSize.x == 0)
1892  return;
1893 
1894  renderCamera = c;
1895 
1896  if (screenPlacer != null)
1897  screenPlacer.SetCamera(renderCamera);
1898 
1899  // Determine the world distance between two vertical
1900  // screen pixels for this camera:
1901  dist = nearPlane.GetDistanceToPoint(transform.position);
1902  worldUnitsPerScreenPixel = Vector3.Distance(c.ScreenToWorldPoint(new Vector3(0, 1, dist)), c.ScreenToWorldPoint(new Vector3(0, 0, dist)));
1903 
1904  if(!hideAtStart)
1905  CalcSize();
1906  return;
1907  }
1908 
1909  renderCamera = c;
1910  screenSize.x = c.pixelWidth;
1911  screenSize.y = c.pixelHeight;
1912 
1913  if (screenPlacer != null)
1914  screenPlacer.SetCamera(renderCamera);
1915 
1916  // Determine the world distance between two vertical
1917  // screen pixels for this camera:
1918  dist = nearPlane.GetDistanceToPoint(transform.position);
1919  worldUnitsPerScreenPixel = Vector3.Distance(c.ScreenToWorldPoint(new Vector3(0, 1, dist)), c.ScreenToWorldPoint(new Vector3(0, 0, dist)));
1920 
1921  CalcSize();
1922  }
1923 
1930  public virtual void Hide(bool tf)
1931  {
1932  if (m_spriteMesh != null)
1933  m_spriteMesh.Hide(tf);
1934  m_hidden = tf;
1935  }
1936 
1942  public bool IsHidden()
1943  {
1944  return m_hidden;
1945 // if (m_spriteMesh != null)
1946 // return m_spriteMesh.IsHidden();
1947 // else
1948 // return true;
1949  }
1950 
1951 
1955  public Vector2 PixelSize
1956  {
1957  get { return new Vector2(width / worldUnitsPerScreenPixel, height / worldUnitsPerScreenPixel); }
1958  set
1959  {
1960  SetSize(value.x * worldUnitsPerScreenPixel, value.y * worldUnitsPerScreenPixel);
1961  }
1962  }
1963 
1969  public Vector2 ImageSize
1970  {
1971  get { return new Vector2(uvRect.width * pixelsPerUV.x, uvRect.height * pixelsPerUV.y); }
1972  }
1973 
1974 
1978  public bool Managed
1979  {
1980  get { return managed; }
1981 
1982  set
1983  {
1984  if (value)
1985  {
1986  if (!managed)
1987  DestroyMesh();
1988  managed = value;
1989  }
1990  else
1991  {
1992  if (managed)
1993  {
1994  if (manager != null)
1995  manager.RemoveSprite(this);
1996  manager = null;
1997  }
1998 
1999  managed = value;
2000 
2001  if (m_spriteMesh == null)
2002  AddMesh();
2003  else if (!(m_spriteMesh is SpriteMesh))
2004  AddMesh();
2005  }
2006  }
2007  }
2008 
2009  // Has the sprite entered Start() yet?
2010  public bool Started
2011  {
2012  get { return m_started; }
2013  }
2014 
2015  // Called when the sprite is
2016  // changed to a managed sprite:
2017  protected void DestroyMesh()
2018  {
2019  // Get rid of our non-managed sprite mesh:
2020  if(m_spriteMesh != null)
2021  m_spriteMesh.sprite = null;
2022  m_spriteMesh = null;
2023  // Destroy our unneeded components:
2024  if (renderer != null)
2025  {
2026  if (Application.isPlaying)
2027  Destroy(renderer);
2028  else
2029  DestroyImmediate(renderer);
2030  }
2031  Object filter = gameObject.GetComponent(typeof(MeshFilter));
2032  if (filter != null)
2033  {
2034  if (Application.isPlaying)
2035  Destroy(filter);
2036  else
2037  DestroyImmediate(filter);
2038  }
2039  }
2040 
2041  // Called when the sprite is
2042  // made a batched/independent mesh.
2043  protected void AddMesh()
2044  {
2045  m_spriteMesh = new SpriteMesh();
2046  m_spriteMesh.sprite = this;
2047  }
2048 
2049 
2050  //--------------------------------------------------------------
2051  // Accessors:
2052  //--------------------------------------------------------------
2053 
2054  public void SetBleedCompensation() { SetBleedCompensation(bleedCompensation); }
2055 
2059  public void SetBleedCompensation(float x, float y) { SetBleedCompensation(new Vector2(x, y)); }
2060 
2064  public void SetBleedCompensation(Vector2 xy)
2065  {
2066  bleedCompensation = xy;
2067  bleedCompensationUV = PixelSpaceToUVSpace(bleedCompensation);
2068  bleedCompensationUVMax = bleedCompensationUV * -2f;
2069 
2070  uvRect.x += bleedCompensationUV.x;
2071  uvRect.y += bleedCompensationUV.y;
2072  uvRect.xMax += bleedCompensationUVMax.x;
2073  uvRect.yMax += bleedCompensationUVMax.y;
2074 
2075  UpdateUVs();
2076  }
2077 
2082  public void SetPlane(SPRITE_PLANE p)
2083  {
2084  plane = p;
2085  SetSize(width, height);
2086  }
2087 
2092  public void SetWindingOrder(WINDING_ORDER order)
2093  {
2094  winding = order;
2095 
2096  if(!managed && m_spriteMesh != null)
2097  ((SpriteMesh)m_spriteMesh).SetWindingOrder(order);
2098  }
2099 
2105  public void SetDrawLayer(int layer)
2106  {
2107  if (!managed)
2108  return;
2109 
2110  drawLayer = layer;
2111  ((SpriteMesh_Managed)m_spriteMesh).drawLayer = layer;
2112  if (manager != null)
2113  manager.SortDrawingOrder();
2114  }
2115 
2121  public void SetFrameInfo(SPRITE_FRAME fInfo)
2122  {
2123  frameInfo = fInfo;
2124  uvRect = fInfo.uvs;
2125 
2126  SetBleedCompensation();
2127 
2128  if (autoResize || pixelPerfect)
2129  CalcSize();
2130  }
2131 
2136  public void SetUVs(Rect uv)
2137  {
2138  frameInfo.uvs = uv;
2139  uvRect = uv;
2140 
2141  SetBleedCompensation();
2142 
2143  // Re-calculate it here since Start() won't be called
2144  // while in-editor:
2145  if (!Application.isPlaying)
2146  CalcSizeUnitsPerUV();
2147 
2148  if (autoResize || pixelPerfect)
2149  CalcSize();
2150  }
2151 
2161  public void SetUVsFromPixelCoords(Rect pxCoords)
2162  {
2163  tempUV = PixelCoordToUVCoord((int)pxCoords.x, (int)pxCoords.yMax);
2164  uvRect.x = tempUV.x;
2165  uvRect.y = tempUV.y;
2166 
2167  tempUV = PixelCoordToUVCoord((int)pxCoords.xMax, (int)pxCoords.y);
2168  uvRect.xMax = tempUV.x;
2169  uvRect.yMax = tempUV.y;
2170 
2171  frameInfo.uvs = uvRect;
2172 
2173  SetBleedCompensation();
2174 
2175  if (autoResize || pixelPerfect)
2176  CalcSize();
2177  }
2178 
2183  public Rect GetUVs()
2184  {
2185  return uvRect;
2186  }
2187 
2194  public Vector3[] GetVertices()
2195  {
2196  if (!managed)
2197  return ((SpriteMesh)m_spriteMesh).mesh.vertices;
2198  else
2199  return m_spriteMesh.vertices;
2200  }
2201 
2207  public Vector3 GetCenterPoint()
2208  {
2209  if (m_spriteMesh == null)
2210  return Vector3.zero;
2211 
2212  Vector3[] verts = m_spriteMesh.vertices;
2213 
2214  switch(plane)
2215  {
2216  case SPRITE_PLANE.XY:
2217  return new Vector3(verts[0].x + 0.5f * (verts[2].x - verts[0].x), verts[0].y - 0.5f * (verts[0].y - verts[2].y), offset.z);
2218  case SPRITE_PLANE.XZ:
2219  return new Vector3(verts[0].x + 0.5f * (verts[2].x - verts[0].x), offset.y, verts[0].z - 0.5f * (verts[0].z - verts[2].z));
2220  case SPRITE_PLANE.YZ:
2221  return new Vector3(offset.x, verts[0].y - 0.5f * (verts[0].y - verts[2].y), verts[0].z - 0.5f * (verts[0].z - verts[2].z));
2222  default:
2223  return new Vector3(verts[0].x + 0.5f * (verts[2].x - verts[0].x), verts[0].y - 0.5f * (verts[0].y - verts[2].y), offset.z);
2224  }
2225  }
2226 
2232  public virtual Rect3D ClippingRect
2233  {
2234  get { return clippingRect; }
2235  set
2236  {
2237  if (ignoreClipping)
2238  return;
2239 
2240  clippingRect = value;
2241 
2242  localClipRect = Rect3D.MultFast(clippingRect, transform.worldToLocalMatrix).GetRect();
2243 
2244  clipped = true;
2245  CalcSize();
2246  UpdateUVs();
2247 
2248  // Verify that we are actually being clipped:
2249  if (leftClipPct != 1f ||
2250  rightClipPct != 1f ||
2251  topClipPct != 1f ||
2252  bottomClipPct != 1f)
2253  return;
2254  else
2255  clipped = false;
2256  }
2257  }
2258 
2259 
2264  public virtual bool Clipped
2265  {
2266  get { return clipped; }
2267  set
2268  {
2269  if (ignoreClipping)
2270  return;
2271 
2272  if (value && !clipped)
2273  {
2274  clipped = true;
2275  CalcSize();
2276  }
2277  else if (clipped)
2278  Unclip();
2279  }
2280  }
2281 
2287  public void SetAnchor(ANCHOR_METHOD a)
2288  {
2289  anchor = a;
2290 
2291  SetSize(width, height);
2292  }
2293 
2297  public ANCHOR_METHOD Anchor
2298  {
2299  get { return anchor; }
2300  set { SetAnchor(value); }
2301  }
2302 
2309  public void SetOffset(Vector3 o)
2310  {
2311  offset = o;
2312  SetSize(width, height);
2313  }
2314 
2319  public Vector3 UnclippedTopLeft
2320  {
2321  get
2322  {
2323  // If we're being asked for our outline, then
2324  // we need to have already started:
2325  if (!m_started)
2326  Start();
2327 
2328  return unclippedTopLeft;
2329  }
2330  }
2331 
2336  public Vector3 UnclippedBottomRight
2337  {
2338  get
2339  {
2340  // If we're being asked for our outline, then
2341  // we need to have already started:
2342  if (!m_started)
2343  Start();
2344 
2345  return unclippedBottomRight;
2346  }
2347  }
2348 
2353  public Vector3 TopLeft
2354  {
2355  get
2356  {
2357  if (m_spriteMesh != null)
2358  return m_spriteMesh.vertices[0];
2359  else
2360  return Vector3.zero;
2361  }
2362  }
2363 
2368  public Vector3 BottomRight
2369  {
2370  get
2371  {
2372  if (m_spriteMesh != null)
2373  return m_spriteMesh.vertices[2];
2374  else
2375  return Vector3.zero;
2376  }
2377  }
2378 
2379  // Accessor for the sprite's mesh manager
2380  public ISpriteMesh spriteMesh
2381  {
2382  get { return m_spriteMesh; }
2383  set
2384  {
2385  m_spriteMesh = value;
2386  if (m_spriteMesh != null)
2387  {
2388  if (m_spriteMesh.sprite != this)
2389  m_spriteMesh.sprite = this;
2390  }
2391  else
2392  return;
2393 
2394  if (managed)
2395  manager = ((SpriteMesh_Managed)m_spriteMesh).manager;
2396  }
2397  }
2398 
2399  // Called by the managing SpriteManager to set
2400  // whether the sprite has been added or not:
2401  public bool AddedToManager
2402  {
2403  get { return addedToManager; }
2404  set { addedToManager = value; }
2405  }
2406 
2407  // Returns pixel dimensions of the sprite when in its default appearance
2408  // (the appearance of the sprite in the editor):
2409  public abstract Vector2 GetDefaultPixelSize(PathFromGUIDDelegate guid2Path, AssetLoaderDelegate loader);
2410 
2411 
2412  //--------------------------------------------------------------
2413  // Utility methods:
2414  //--------------------------------------------------------------
2415 
2425  public Vector2 PixelSpaceToUVSpace(Vector2 xy)
2426  {
2427  if (pixelsPerUV.x == 0 || pixelsPerUV.y == 0)
2428  return Vector2.zero;
2429 
2430  return new Vector2(xy.x / pixelsPerUV.x, xy.y / pixelsPerUV.y);
2431  }
2432 
2443  public Vector2 PixelSpaceToUVSpace(int x, int y)
2444  {
2445  return PixelSpaceToUVSpace(new Vector2((float)x, (float)y));
2446  }
2447 
2457  public Vector2 PixelCoordToUVCoord(Vector2 xy)
2458  {
2459  if (pixelsPerUV.x == 0 || pixelsPerUV.y == 0)
2460  return Vector2.zero;
2461 
2462  return new Vector2(xy.x / pixelsPerUV.x, (pixelsPerUV.y - xy.y - 1) / pixelsPerUV.y);
2463  }
2464 
2475  public Vector2 PixelCoordToUVCoord(int x, int y)
2476  {
2477  return PixelCoordToUVCoord(new Vector2((float)x, (float)y));
2478  }
2479 
2486  public abstract int GetStateIndex(string stateName);
2487 
2492  public abstract void SetState(int index);
2493 
2494 
2495  public ISpriteAnimatable prev
2496  {
2497  get { return m_prev; }
2498  set { m_prev = value; }
2499  }
2500 
2501  public ISpriteAnimatable next
2502  {
2503  get { return m_next; }
2504  set { m_next = value; }
2505  }
2506 
2507  // Uses the mirror object to validate and respond
2508  // to changes in our inspector.
2509  public virtual void DoMirror()
2510  {
2511  // Only run if we're not playing:
2512  if (Application.isPlaying)
2513  return;
2514 
2515  // This means Awake() was recently called, meaning
2516  // we couldn't reliably get valid camera viewport
2517  // sizes, so we zeroed them out so we'd know to
2518  // get good values later on (when OnDrawGizmos()
2519  // is called):
2520  if (screenSize.x == 0 || screenSize.y == 0)
2521  Start();
2522 
2523  if (mirror == null)
2524  {
2525  mirror = new SpriteRootMirror();
2526  mirror.Mirror(this);
2527  }
2528 
2529  mirror.Validate(this);
2530 
2531  // Compare our mirrored settings to the current settings
2532  // to see if something was changed:
2533  if (mirror.DidChange(this))
2534  {
2535  Init();
2536  mirror.Mirror(this); // Update the mirror
2537  }
2538  }
2539 
2540  // Included to work around the Unity bug where Start() is not
2541  // called when reentering edit mode if play lasts for longer
2542  // than 10 seconds:
2543 #if (UNITY_3_0 || UNITY_3_1 || UNITY_3_2 || UNITY_3_3 || UNITY_3_4 || UNITY_3_5 || UNITY_3_6 || UNITY_3_7 || UNITY_3_8 || UNITY_3_9 || 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) && UNITY_EDITOR
2544  void Update()
2545  {
2546  DoMirror();
2547  }
2548 
2549  public virtual void OnDrawGizmosSelected()
2550  {
2551  }
2552 #else
2553  // Ensures that the sprite is updated in the scene view
2554  // while editing:
2555  public virtual void OnDrawGizmosSelected()
2556  {
2557  DoMirror();
2558  }
2559 
2560  // Ensures that the sprite is updated in the scene view
2561  // while editing:
2562  public virtual void OnDrawGizmos()
2563  {
2564  DoMirror();
2565  }
2566 #endif
2567 
2568 #if UNITY_FLASH
2569  // A custom "EndsWith()" implementation since Unity flash lacks this:
2570  protected bool StringEndsWith(string toSearch, string sought)
2571  {
2572  if (toSearch.Length < sought.Length)
2573  return false;
2574 
2575  for (int i = sought.Length - 1, j = toSearch.Length - 1; i >= 0; --i, --j)
2576  if (toSearch[j] != sought[i])
2577  return false;
2578 
2579  return true;
2580  }
2581 #endif
2582 }
2583 
2584 
2585 // Mirrors the editable settings of a sprite that affect
2586 // how the sprite is drawn in the scene view
2587 public class SpriteRootMirror
2588 {
2589  public bool managed;
2590  public SpriteManager manager;
2591  public int drawLayer;
2592  public SpriteRoot.SPRITE_PLANE plane;
2593  public SpriteRoot.WINDING_ORDER winding;
2594  public float width, height;
2595  public Vector2 bleedCompensation;
2596  public SpriteRoot.ANCHOR_METHOD anchor;
2597  public Vector3 offset;
2598  public Color color;
2599  public bool pixelPerfect;
2600  public bool autoResize;
2601  public Camera renderCamera;
2602  public bool hideAtStart;
2603 /*
2604  public Vector3 pos;
2605  public Vector3 scale;
2606  public Quaternion rot;
2607 */
2608 
2609  // Mirrors the specified sprite's settings
2610  public virtual void Mirror(SpriteRoot s)
2611  {
2612  managed = s.managed;
2613  manager = s.manager;
2614  drawLayer = s.drawLayer;
2615  plane = s.plane;
2616  winding = s.winding;
2617  width = s.width;
2618  height = s.height;
2619  bleedCompensation = s.bleedCompensation;
2620  anchor = s.anchor;
2621  offset = s.offset;
2622  color = s.color;
2623  pixelPerfect = s.pixelPerfect;
2624  autoResize = s.autoResize;
2625  renderCamera = s.renderCamera;
2626  hideAtStart = s.hideAtStart;
2627 /*
2628  pos = s.transform.position;
2629  scale = s.transform.localScale;
2630  rot = s.transform.localRotation;
2631 */
2632  }
2633 
2634  // Validates certain settings:
2635  public virtual bool Validate(SpriteRoot s)
2636  {
2637  if (s.pixelPerfect)
2638  {
2639  s.autoResize = true;
2640  }
2641 
2642 /*
2643  if (s.transform.position != pos ||
2644  s.transform.localScale != scale ||
2645  s.transform.localRotation != rot)
2646  {
2647  pos = s.transform.position;
2648  scale = s.transform.localScale;
2649  rot = s.transform.localRotation;
2650  if (s.managed)
2651  {
2652  if (s.manager != null)
2653  s.manager.UpdatePositions();
2654  }
2655  }
2656 */
2657  return true;
2658  }
2659 
2660  // Returns true if any of the settings do not match:
2661  public virtual bool DidChange(SpriteRoot s)
2662  {
2663  if (s.managed != managed)
2664  {
2665  HandleManageState(s);
2666  return true;
2667  }
2668  if (s.manager != manager)
2669  {
2670  UpdateManager(s);
2671  return true;
2672  }
2673  if (s.drawLayer != drawLayer)
2674  {
2675  HandleDrawLayerChange(s);
2676  return true;
2677  }
2678  if (s.plane != plane)
2679  return true;
2680  if (s.winding != winding)
2681  return true;
2682  if (s.width != width)
2683  return true;
2684  if (s.height != height)
2685  return true;
2686  if (s.bleedCompensation != bleedCompensation)
2687  return true;
2688  if (s.anchor != anchor)
2689  return true;
2690  if (s.offset != offset)
2691  return true;
2692  if (s.color.r != color.r ||
2693  s.color.g != color.g ||
2694  s.color.b != color.b ||
2695  s.color.a != color.a)
2696  return true;
2697  if (s.pixelPerfect != pixelPerfect)
2698  return true;
2699  if (s.autoResize != autoResize)
2700  return true;
2701  if (s.renderCamera != renderCamera)
2702  return true;
2703 
2704  if (s.hideAtStart != hideAtStart)
2705  {
2706  s.Hide(s.hideAtStart);
2707  return true;
2708  }
2709 
2710  return false;
2711  }
2712 
2713  // Handles things when the managed state of the
2714  // sprite is changed:
2715  protected virtual void HandleManageState(SpriteRoot s)
2716  {
2717  // Since the Managed property checks the previous
2718  // value, we'll need to set it back temporarily
2719  // and it will get updated to the current desired
2720  // value internally:
2721  s.managed = managed;
2722  s.Managed = !managed;
2723  }
2724 
2725  public virtual void UpdateManager(SpriteRoot s)
2726  {
2727  if (!s.managed)
2728  s.manager = null;
2729  else
2730  {
2731  if(manager != null)
2732  manager.RemoveSprite(s);
2733  if(s.manager != null)
2734  s.manager.AddSprite(s);
2735  }
2736  }
2737 
2738  protected virtual void HandleDrawLayerChange(SpriteRoot s)
2739  {
2740  if(!s.managed)
2741  { // Don't let it be changed to underscore
2742  // the fact that this is invalid/useless
2743  // if not managed:
2744  s.drawLayer = 0;
2745  return;
2746  }
2747 
2748  s.SetDrawLayer(s.drawLayer);
2749  }
2750 }
void Clear()
Removes all items from the list and ensures their prev and next references are cleared.
Definition: SpriteRoot.cs:442
void End()
Ends iteration of the list and frees the iterator.
Definition: SpriteRoot.cs:178
Color Color
Accessor for the object's current overall color tint.
Definition: SpriteRoot.cs:1736
abstract void SetState(int index)
Sets the sprite to the specified state/animation.
virtual void TruncateTop(float pct)
Truncates the top edge of the sprite to the specified percentage. 1 == no truncation 0 == complete tr...
Definition: SpriteRoot.cs:1577
void SetFrameInfo(SPRITE_FRAME fInfo)
Sets the sprite's frame info, which includes UVs, offsets, etc.
Definition: SpriteRoot.cs:2121
virtual void SetSize(float w, float h)
Sets the physical dimensions of the sprite in the plane selected
Definition: SpriteRoot.cs:1384
void Add(T item)
Adds an item to our list
Definition: SpriteRoot.cs:370
Vector3 UnclippedBottomRight
The bottom-right corner of the sprite when no clipping or trimming is applied.
Definition: SpriteRoot.cs:2337
void SetBleedCompensation(float x, float y)
Sets the bleed compensation to use (see bleedCompensation).
Definition: SpriteRoot.cs:2059
bool pixelPerfect
Automatically sizes the sprite so that it will display pixel-perfect on-screen. NOTE: If you change t...
Definition: SpriteRoot.cs:762
Vector2 PixelCoordToUVCoord(int x, int y)
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:2475
bool NextNoRemove()
Moves Current to the next item in the list and does not call the associated list's End() when the end...
Definition: SpriteRoot.cs:219
int drawLayer
The layer in which the sprite will be drawn if managed.
Definition: SpriteRoot.cs:711
Vector3 GetCenterPoint()
Gets the center point of the sprite, taking into account the actual positions of vertices.
Definition: SpriteRoot.cs:2207
void SetAnchor(ANCHOR_METHOD a)
Sets the anchor method to use. See ANCHOR_METHOD
Definition: SpriteRoot.cs:2287
bool Begin(EZLinkedList< T > l)
Begin iterating through a list.
Definition: SpriteRoot.cs:166
delegate void SpriteResizedDelegate(float newWidth, float newHeight, SpriteRoot sprite)
bool autoResize
Automatically resizes the sprite based on its new UV dimensions compared to its previous dimensions...
Definition: SpriteRoot.cs:771
virtual void SetCamera(Camera c)
Sets the camera to use when calculating a pixel-perfect sprite size.
Definition: SpriteRoot.cs:1869
float width
Width of the sprite in world space.
Definition: SpriteRoot.cs:732
void MultFast(Matrix4x4 matrix)
Multiplies the points in the Rect3D by the specified matrix in a non-projective way. Alters the contents of the Rect3D.
Definition: SpriteRoot.cs:579
virtual void SetColor(Color c)
Sets the sprite's color to the specified color.
Definition: SpriteRoot.cs:1723
void Remove(T item)
Removes the specified item from the list.
Definition: SpriteRoot.cs:387
Vector2 PixelSpaceToUVSpace(int x, int y)
Converts pixel-space values to UV-space scalar values according to the currently assigned material...
Definition: SpriteRoot.cs:2443
bool MoveNext()
Moves Current to the next item in the list.
Definition: SpriteRoot.cs:356
static Rect3D MultFast(Rect3D rect, Matrix4x4 matrix)
Multiplies the points in the specified Rect3D by the specified matrix in a non-projective way and ret...
Definition: SpriteRoot.cs:598
virtual void UpdateUVs()
Applies any changes to the UVs to the actual sprite mesh.
Definition: SpriteRoot.cs:1654
void SetUVsFromPixelCoords(Rect pxCoords)
Sets the sprite's UVs from pixel coordinates.
Definition: SpriteRoot.cs:2161
bool IsHidden()
Returns whether the sprite is currently set to be hideAtStart (whether its mesh renderer component is...
Definition: SpriteRoot.cs:1942
void CalcSize()
Recalculates the width and height of the sprite based upon the change in its UV dimensions (autoResiz...
Definition: SpriteRoot.cs:1350
Rect GetRect()
Returns a Rect just using the x and y coordinates of the 3D rect.
Definition: SpriteRoot.cs:557
Represents a 2D rect that exists in 3D space and is not axis-aligned.
Definition: SpriteRoot.cs:469
WINDING_ORDER winding
The winding order of the sprite's polygons - determines the direction the sprite will "face"...
Definition: SpriteRoot.cs:727
void SetDrawLayer(int layer)
Sets the draw layer of the sprite (only applies to managed sprites).
Definition: SpriteRoot.cs:2105
Vector2 PixelSpaceToUVSpace(Vector2 xy)
Converts pixel-space values to UV-space scalar values according to the currently assigned material...
Definition: SpriteRoot.cs:2425
virtual void TruncateRight(float pct)
Truncates the right edge of the sprite to the specified percentage. 1 == no truncation 0 == complete ...
Definition: SpriteRoot.cs:1533
Vector3 TopLeft
Returns the position of the top-left vertex of the sprite after any clipping or trimming.
Definition: SpriteRoot.cs:2354
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
abstract int GetStateIndex(string stateName)
Returns the index of the state with the specified name. -1 if no state matching the specified name is...
bool persistent
This must be set to true at design time for the sprite to survive loading a new level.
Definition: SpriteRoot.cs:716
void UpdateCamera()
Updates any camera-dependent settings, such as the calculated pixel-perfect size. Use this with Broad...
Definition: SpriteRoot.cs:1847
ANCHOR_METHOD Anchor
Accessor for the object's anchor method.
Definition: SpriteRoot.cs:2298
Vector3 UnclippedTopLeft
The top-left corner of the sprite when no clipping or trimming is applied.
Definition: SpriteRoot.cs:2320
Rect GetUVs()
Returns the current UV coordinates of the sprite (before bleed compensation).
Definition: SpriteRoot.cs:2183
void SetCamera()
A no-argument version of SetCamera() that simply re-assigns the same camera to the object...
Definition: SpriteRoot.cs:1857
void CalcPixelToUV()
Recalculates the pixel-to-UV ratio based on the current texture.
Definition: SpriteRoot.cs:1775
Vector3 offset
Offsets the sprite, in world space, from the center of its GameObject.
Definition: SpriteRoot.cs:816
void SetWindingOrder(WINDING_ORDER order)
Sets the winding order to use. See WINDING_ORDER.
Definition: SpriteRoot.cs:2092
void SetMaterial(Material mat)
Changes the material to be used by the sprite. NOTE: This can only be used with non-managed sprites...
Definition: SpriteRoot.cs:1813
Vector2 ImageSize
Gets the width and height of the image the sprite is displaying. NOTE: This is not the number of scre...
Definition: SpriteRoot.cs:1970
Vector3 BottomRight
Returns the position of the bottom-right vertex of the sprite after any clipping or trimming...
Definition: SpriteRoot.cs:2369
A custom doubly linked list generic class.
Definition: SpriteRoot.cs:258
Vector3[] GetVertices()
Returns a reference to the sprite's vertices. NOTE: You can only directly modify the sprite's vertice...
Definition: SpriteRoot.cs:2194
virtual void Untruncate()
Removes any truncation.
Definition: SpriteRoot.cs:1618
Color color
The color to be used by all four of the sprite's vertices. This can be used to color, highlight, or fade the sprite. Be sure to use a vertex-colored shader for this to have an effect.
Definition: SpriteRoot.cs:824
virtual Camera RenderCamera
Accessor for the camera that will be used to render this object. Use this to ensure the object is pro...
Definition: SpriteRoot.cs:1831
The root class of all sprites. Does not assume any animation capabilities or atlas packing...
Definition: SpriteRoot.cs:628
void FromPoints(Vector3 tl, Vector3 tr, Vector3 bl)
Defines a 3D rectangle from three points which must form a right-triangle.
Definition: SpriteRoot.cs:510
virtual void TruncateBottom(float pct)
Truncates the bottom edge of the sprite to the specified percentage. 1 == no truncation 0 == complete...
Definition: SpriteRoot.cs:1599
void SetTexture(Texture2D tex)
Changes the texture to be used by the sprite's material. NOTE: This will cause the sprite not to batc...
Definition: SpriteRoot.cs:1795
float height
Height of the sprite in world space.
Definition: SpriteRoot.cs:737
virtual Rect3D ClippingRect
The rect against which the sprite should be clipped. The sprite will be immediately clipped by this r...
Definition: SpriteRoot.cs:2233
bool Next()
Moves Current to the next item in the list.
Definition: SpriteRoot.cs:197
void SetOffset(Vector3 o)
Sets the offset of the sprite from its GameObject. See offset
Definition: SpriteRoot.cs:2309
Vector2 PixelSize
Gets/Sets the width and height of the sprite in pixels as it appears on-screen.
Definition: SpriteRoot.cs:1956
void End(EZLinkedListIterator< T > it)
Ends iteration of the list using the specified iterator. The iterator is freed for use again later...
Definition: SpriteRoot.cs:330
Vector2 bleedCompensation
Will contract the UV edges of the sprite by the specified amount to prevent "bleeding" from neighbori...
Definition: SpriteRoot.cs:744
ANCHOR_METHOD anchor
Anchor method to use. ANCHOR_METHOD
Definition: SpriteRoot.cs:749
SpriteManager manager
Reference to the manager which will manage this sprite, provided managed is set to true...
Definition: SpriteRoot.cs:702
virtual void Delete()
If non-managed, call Delete() before destroying this component or the GameObject to which it is attac...
Definition: SpriteRoot.cs:1105
virtual void Unclip()
Removes any clipping that is being applied to the sprite.
Definition: SpriteRoot.cs:1636
void FromRect(Rect r)
Defines a Rect3D from a standard Rect.
Definition: SpriteRoot.cs:566
SPRITE_PLANE plane
The plane in which the sprite will be drawn.
Definition: SpriteRoot.cs:721
virtual void Clear()
Resets important sprite values to defaults for reuse.
Definition: SpriteRoot.cs:1027
virtual void TruncateLeft(float pct)
Truncates the left edge of the sprite to the specified percentage. 1 == no truncation 0 == complete t...
Definition: SpriteRoot.cs:1555
Rect3D(Rect r)
Constructs a new 3D rectangle from a standard Rect.
Definition: SpriteRoot.cs:542
bool hideAtStart
Whether the sprite will be hideAtStart when it starts.
Definition: SpriteRoot.cs:856
bool Managed
Sets the sprite to a managed or batched state.
Definition: SpriteRoot.cs:1979
void SetPlane(SPRITE_PLANE p)
Sets the plane in which the sprite is to be drawn. See: SPRITE_PLANE
Definition: SpriteRoot.cs:2082
void SetUVs(Rect uv)
Sets the sprite's UVs to the specified values.
Definition: SpriteRoot.cs:2136
virtual bool Clipped
Accessor for whether the sprite is to be clipped by any already-specified clipping rect...
Definition: SpriteRoot.cs:2265
bool ignoreClipping
When true, the sprite will not be clipped.
Definition: SpriteRoot.cs:868
void SetBleedCompensation(Vector2 xy)
Sets the bleed compensation to use (see bleedCompensation).
Definition: SpriteRoot.cs:2064
virtual 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: SpriteRoot.cs:1930
Allows multiple sprites to be combined into a single mesh. Sprites are transformed using bones which ...
virtual void Copy(SpriteRoot s)
Copies all the vital attributes of another sprite.
Definition: SpriteRoot.cs:1038
EZLinkedListIterator< T > Begin()
Gets an iterator with which to iterate through the list.
Definition: SpriteRoot.cs:303
Rect3D(Vector3 tl, Vector3 tr, Vector3 bl)
Constructs a new 3D rectangle from three points which must form a right-triangle. ...
Definition: SpriteRoot.cs:527