8 using System.Collections;
9 using System.Collections.Generic;
14 public delegate Object AssetLoaderDelegate(
string path, System.Type type);
29 public Vector2 scaleFactor;
33 public Vector2 topLeftOffset;
34 public Vector2 bottomRightOffset;
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);
47 scaleFactor = f.scaleFactor;
48 topLeftOffset = f.topLeftOffset;
49 bottomRightOffset = f.bottomRightOffset;
62 public string imgPath;
82 public Rect uvs =
new Rect(1f, 1f, 1f, 1f);
87 public Vector2 scaleFactor =
new Vector2(0.5f, 0.5f);
91 public Vector2 topLeftOffset =
new Vector2(-1f, 1f);
92 public Vector2 bottomRightOffset =
new Vector2(1f, -1f);
97 scaleFactor = f.scaleFactor;
98 topLeftOffset = f.topLeftOffset;
99 bottomRightOffset = f.bottomRightOffset;
105 scaleFactor = f.scaleFactor;
106 topLeftOffset = f.topLeftOffset;
107 bottomRightOffset = f.bottomRightOffset;
115 sf.scaleFactor = scaleFactor;
116 sf.topLeftOffset = topLeftOffset;
117 sf.bottomRightOffset = bottomRightOffset;
140 public interface IEZLinkedListItem<T>
150 public class EZLinkedListIterator<T> where T : IEZLinkedListItem<T>
190 get {
return cur == null; }
230 public class EZLinkedListNode<T> : IEZLinkedListItem<EZLinkedListNode<T>>
233 EZLinkedListNode<T> m_prev;
234 EZLinkedListNode<T> m_next;
236 public EZLinkedListNode(T v)
241 public EZLinkedListNode<T> prev
243 get {
return m_prev; }
244 set { m_prev = value; }
247 public EZLinkedListNode<T> next
249 get {
return m_next; }
250 set { m_next = value; }
258 public class EZLinkedList<T> where T : IEZLinkedListItem<T>
260 List<EZLinkedListIterator<T>> iters =
new List<EZLinkedListIterator<T>>();
261 List<EZLinkedListIterator<T>> freeIters =
new List<EZLinkedListIterator<T>>();
272 protected T nextItem;
275 protected int count=0;
279 get {
return count; }
284 get {
return head == null; }
308 if (freeIters.Count > 0)
310 it = freeIters[freeIters.Count-1];
311 freeIters.RemoveAt(freeIters.Count-1);
347 nextItem =
default(T);
389 if (head == null || item == null)
393 if (head.Equals(item))
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;
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;
419 if (item.next != null)
421 if (item.prev != null)
422 item.prev.next = item.next;
423 item.next.prev = item.prev;
425 else if (item.prev != null)
428 item.prev.next =
default(T);
431 item.next =
default(T);
432 item.prev =
default(T);
456 cur.prev =
default(T);
457 cur.next =
default(T);
459 }
while (cur != null);
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; } }
487 if(
float.IsNaN(m_width))
488 m_width = Vector3.Distance(m_tr, m_tl);
497 if(
float.IsNaN(m_height))
498 m_height = Vector3.Distance(m_tl, m_bl);
515 m_br = tr + (bl - tl);
517 m_width = m_height = float.NaN;
527 public Rect3D(Vector3 tl, Vector3 tr, Vector3 bl)
533 m_width = m_height = 0;
548 m_width = m_height = 0;
559 return Rect.MinMaxRect(m_bl.x, m_bl.y, m_tr.x, m_tl.y);
569 new Vector3(r.xMax, r.yMax, 0),
570 new Vector3(r.xMin, r.yMin, 0));
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);
588 m_width = m_height = float.NaN;
600 Vector3 vTmpTl = matrix.MultiplyPoint3x4(rect.m_tl);
601 Vector3 vTmpTr = matrix.MultiplyPoint3x4(rect.m_tr);
602 Vector3 vTmpBl = matrix.MultiplyPoint3x4(rect.m_bl);
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);
609 vTmpTl =
new Vector3(fXMin, fYMax, vTmpTl.z);
610 vTmpTr =
new Vector3(fXMax, fYMax, vTmpTl.z);
611 vTmpBl =
new Vector3(fXMin, fYMin, vTmpTl.z);
613 return new Rect3D(vTmpTl, vTmpTr, vTmpBl);
628 public abstract class SpriteRoot : MonoBehaviour, IEZLinkedListItem<ISpriteAnimatable>, IUseCamera
706 protected bool addedToManager =
false;
773 protected Vector2 bleedCompensationUV;
774 protected Vector2 bleedCompensationUVMax;
776 protected Rect uvRect;
777 protected Vector2 scaleFactor =
new Vector2(0.5f, 0.5f);
778 protected Vector2 topLeftOffset =
new Vector2(-1f, 1f);
779 protected Vector2 bottomRightOffset =
new Vector2(1f, -1f);
784 protected Vector3 topLeft;
785 protected Vector3 bottomRight;
787 protected Vector3 unclippedTopLeft;
788 protected Vector3 unclippedBottomRight;
791 protected Vector2 tlTruncate =
new Vector2(1f, 1f);
793 protected Vector2 brTruncate =
new Vector2(1f, 1f);
794 protected bool truncated;
795 protected Rect3D clippingRect;
796 protected Rect localClipRect;
797 protected float leftClipPct = 1f;
798 protected float rightClipPct= 1f;
799 protected float topClipPct = 1f;
800 protected float bottomClipPct = 1f;
801 protected bool clipped =
false;
804 public bool billboarded =
false;
805 [System.NonSerialized]
806 public bool isClone =
false;
807 [System.NonSerialized]
808 public bool uvsInitialized =
false;
809 protected bool m_started =
false;
810 protected bool deleted =
false;
830 protected ISpriteMesh m_spriteMesh;
834 protected ISpriteAnimatable m_prev;
835 protected ISpriteAnimatable m_next;
839 protected Vector2 screenSize;
840 public Camera renderCamera;
841 protected Vector2 sizeUnitsPerUV;
843 public Vector2 pixelsPerUV;
844 protected float worldUnitsPerScreenPixel;
863 protected bool m_hidden =
false;
873 protected SpriteRootMirror mirror = null;
876 protected Vector2 tempUV;
877 protected Mesh oldMesh;
881 protected virtual void Awake()
890 if (StringEndsWith(name,
"(Clone)"))
892 if (name.EndsWith(
"(Clone)"))
898 MeshFilter mf = (MeshFilter)GetComponent(typeof(MeshFilter));
901 oldMesh = mf.sharedMesh;
902 mf.sharedMesh = null;
911 manager.AddSprite(
this);
914 Debug.LogError(
"Managed sprite \"" + name +
"\" has not been assigned to a SpriteManager!");
919 public virtual void Start()
925 if (Application.isPlaying)
933 else if (m_spriteMesh != null)
940 DontDestroyOnLoad(
this);
941 if (m_spriteMesh is SpriteMesh)
942 ((SpriteMesh)m_spriteMesh).SetPersistent();
945 if (m_spriteMesh == null && !
managed)
949 CalcSizeUnitsPerUV();
951 if (m_spriteMesh != null)
953 if (m_spriteMesh.texture != null)
955 SetPixelToUV(m_spriteMesh.texture);
959 if (renderCamera == null)
960 renderCamera = Camera.main;
972 protected void CalcSizeUnitsPerUV()
974 Rect uvs = frameInfo.uvs;
979 if (uvs.width == 0 || uvs.height == 0 || (uvs.xMin == 1f && uvs.yMin == 1f))
981 sizeUnitsPerUV = Vector2.zero;
985 sizeUnitsPerUV.x =
width / uvs.width;
986 sizeUnitsPerUV.y =
height / uvs.height;
990 protected virtual void Init()
997 if (screenPlacer != null)
998 screenPlacer.SetCamera(renderCamera);
1001 if(m_spriteMesh != null)
1007 DontDestroyOnLoad(((SpriteMesh)m_spriteMesh).mesh);
1010 if (m_spriteMesh.texture != null)
1012 SetPixelToUV(m_spriteMesh.texture);
1015 m_spriteMesh.Init();
1020 if (!Application.isPlaying)
1021 CalcSizeUnitsPerUV();
1029 billboarded =
false;
1043 if (m_spriteMesh != null && s.spriteMesh != null)
1044 ((SpriteMesh)m_spriteMesh).material = s.spriteMesh.material;
1047 renderer.sharedMaterial = s.renderer.sharedMaterial;
1054 if (s.renderCamera != null)
1056 if (renderCamera == null)
1057 renderCamera = Camera.main;
1059 if (m_spriteMesh != null)
1061 if (m_spriteMesh.texture != null)
1062 SetPixelToUV(m_spriteMesh.texture);
1065 ((SpriteMesh)m_spriteMesh).material = renderer.sharedMaterial;
1066 SetPixelToUV(m_spriteMesh.texture);
1080 scaleFactor = s.scaleFactor;
1081 topLeftOffset = s.topLeftOffset;
1082 bottomRightOffset = s.bottomRightOffset;
1094 public virtual void InitUVs()
1097 uvRect = frameInfo.uvs;
1110 if (!
managed && Application.isPlaying)
1112 if (spriteMesh != null)
1114 Destroy(((SpriteMesh)spriteMesh).mesh);
1115 ((SpriteMesh)spriteMesh).mesh = null;
1120 protected virtual void OnEnable()
1129 manager.AddSprite(
this);
1132 frameInfo = oldFrame;
1133 uvRect = frameInfo.uvs;
1134 SetBleedCompensation();
1136 else if (savedManager != null)
1138 savedManager.AddSprite(
this);
1143 protected virtual void OnDisable()
1155 manager.RemoveSprite(
this);
1160 public virtual void OnDestroy()
1169 public void CalcEdges()
1173 case ANCHOR_METHOD.TEXTURE_OFFSET:
1183 Vector2 halfSizeIfFull;
1184 halfSizeIfFull.x =
width * scaleFactor.x;
1185 halfSizeIfFull.y =
height * scaleFactor.y;
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;
1204 case ANCHOR_METHOD.UPPER_LEFT:
1207 bottomRight.x =
width;
1210 case ANCHOR_METHOD.UPPER_CENTER:
1211 topLeft.x =
width * -0.5f;
1213 bottomRight.x =
width * 0.5f;
1216 case ANCHOR_METHOD.UPPER_RIGHT:
1222 case ANCHOR_METHOD.MIDDLE_LEFT:
1224 topLeft.y =
height * 0.5f;
1225 bottomRight.x =
width;
1226 bottomRight.y =
height * -0.5f;
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;
1234 case ANCHOR_METHOD.MIDDLE_RIGHT:
1236 topLeft.y =
height * 0.5f;
1238 bottomRight.y =
height * -0.5f;
1240 case ANCHOR_METHOD.BOTTOM_LEFT:
1243 bottomRight.x =
width;
1246 case ANCHOR_METHOD.BOTTOM_CENTER:
1247 topLeft.x =
width * -0.5f;
1249 bottomRight.x =
width * 0.5f;
1252 case ANCHOR_METHOD.BOTTOM_RIGHT:
1260 unclippedTopLeft = topLeft +
offset;
1261 unclippedBottomRight = bottomRight +
offset;
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;
1274 if(clipped && bottomRight.x - topLeft.x != 0 && topLeft.y - bottomRight.y != 0)
1276 Vector3 origTL = topLeft;
1277 Vector3 origBR = bottomRight;
1278 Rect tempClipRect = localClipRect;
1281 tempClipRect.x -= offset.x;
1282 tempClipRect.y -= offset.y;
1285 if (topLeft.x < tempClipRect.x)
1288 leftClipPct = 1f - (tempClipRect.x - origTL.x) / (origBR.x - origTL.x);
1289 topLeft.x = Mathf.Clamp(tempClipRect.x, origTL.x, origBR.x);
1291 if (leftClipPct <= 0)
1292 topLeft.x = bottomRight.x = tempClipRect.x;
1297 if (bottomRight.x > tempClipRect.xMax)
1300 rightClipPct = (tempClipRect.xMax - origTL.x) / (origBR.x - origTL.x);
1301 bottomRight.x = Mathf.Clamp(tempClipRect.xMax, origTL.x, origBR.x);
1303 if (rightClipPct <= 0)
1304 bottomRight.x = topLeft.x = tempClipRect.xMax;
1310 if (topLeft.y > tempClipRect.yMax)
1313 topClipPct = (tempClipRect.yMax - origBR.y) / (origTL.y - origBR.y);
1314 topLeft.y = Mathf.Clamp(tempClipRect.yMax, origBR.y, origTL.y);
1316 if (topClipPct <= 0)
1317 topLeft.y = bottomRight.y = tempClipRect.yMax;
1322 if (bottomRight.y < tempClipRect.y)
1325 bottomClipPct = 1f - (tempClipRect.y - origBR.y) / (origTL.y - origBR.y);
1326 bottomRight.y = Mathf.Clamp(tempClipRect.y, origBR.y, origTL.y);
1328 if (bottomClipPct <= 0)
1329 bottomRight.y = topLeft.y = tempClipRect.y;
1339 bottomRight.x *= -1f;
1353 if (uvRect.width == 0)
1354 uvRect.width = 0.0000001f;
1355 if (uvRect.height == 0)
1356 uvRect.height = 0.0000001f;
1362 width = worldUnitsPerScreenPixel * frameInfo.uvs.width * pixelsPerUV.x;
1363 height = worldUnitsPerScreenPixel * frameInfo.uvs.height * pixelsPerUV.y;
1367 if (sizeUnitsPerUV.x != 0 && sizeUnitsPerUV.y != 0)
1370 width = frameInfo.uvs.width * sizeUnitsPerUV.x;
1371 height = frameInfo.uvs.height * sizeUnitsPerUV.y;
1386 if (m_spriteMesh == null)
1392 CalcSizeUnitsPerUV();
1396 case SPRITE_PLANE.XY:
1399 case SPRITE_PLANE.XZ:
1402 case SPRITE_PLANE.YZ:
1407 if (resizedDelegate != null)
1412 protected void SetSizeXY(
float w,
float h)
1416 Vector3[] vertices = m_spriteMesh.vertices;
1421 vertices[0].x = offset.x + topLeft.x;
1422 vertices[0].y = offset.y + topLeft.y;
1423 vertices[0].z = offset.z;
1426 vertices[1].x = offset.x + topLeft.x;
1427 vertices[1].y = offset.y + bottomRight.y;
1428 vertices[1].z = offset.z;
1431 vertices[2].x = offset.x + bottomRight.x;
1432 vertices[2].y = offset.y + bottomRight.y;
1433 vertices[2].z = offset.z;
1436 vertices[3].x = offset.x + bottomRight.x;
1437 vertices[3].y = offset.y + topLeft.y;
1438 vertices[3].z = offset.z;
1443 vertices[0].x = offset.x + topLeft.x;
1444 vertices[0].y = offset.y + topLeft.y;
1445 vertices[0].z = offset.z;
1448 vertices[1].x = offset.x + topLeft.x;
1449 vertices[1].y = offset.y + bottomRight.y;
1450 vertices[1].z = offset.z;
1453 vertices[2].x = offset.x + bottomRight.x;
1454 vertices[2].y = offset.y + bottomRight.y;
1455 vertices[2].z = offset.z;
1458 vertices[3].x = offset.x + bottomRight.x;
1459 vertices[3].y = offset.y + topLeft.y;
1460 vertices[3].z = offset.z;
1464 m_spriteMesh.UpdateVerts();
1468 protected void SetSizeXZ(
float w,
float h)
1472 Vector3[] vertices = m_spriteMesh.vertices;
1475 vertices[0].x = offset.x + topLeft.x;
1476 vertices[0].y = offset.y;
1477 vertices[0].z = offset.z + topLeft.y;
1480 vertices[1].x = offset.x + topLeft.x;
1481 vertices[1].y = offset.y;
1482 vertices[1].z = offset.z + bottomRight.y;
1485 vertices[2].x = offset.x + bottomRight.x;
1486 vertices[2].y = offset.y;
1487 vertices[2].z = offset.z + bottomRight.y;
1490 vertices[3].x = offset.x + bottomRight.x;
1491 vertices[3].y = offset.y;
1492 vertices[3].z = offset.z + topLeft.y;
1494 m_spriteMesh.UpdateVerts();
1498 protected void SetSizeYZ(
float w,
float h)
1502 Vector3[] vertices = m_spriteMesh.vertices;
1505 vertices[0].x = offset.x;
1506 vertices[0].y = offset.y + topLeft.y;
1507 vertices[0].z = offset.z + topLeft.x;
1510 vertices[1].x = offset.x;
1511 vertices[1].y = offset.y + bottomRight.y;
1512 vertices[1].z = offset.z + topLeft.x;
1515 vertices[2].x = offset.x;
1516 vertices[2].y = offset.y + bottomRight.y;
1517 vertices[2].z = offset.z + bottomRight.x;
1520 vertices[3].x = offset.x;
1521 vertices[3].y = offset.y + topLeft.y;
1522 vertices[3].z = offset.z + bottomRight.x;
1524 m_spriteMesh.UpdateVerts();
1536 brTruncate.x = Mathf.Clamp01(pct);
1537 if (brTruncate.x < 1f || tlTruncate.y < 1f || brTruncate.y < 1f)
1557 tlTruncate.x = Mathf.Clamp01(pct);
1559 if (tlTruncate.x < 1f || tlTruncate.y < 1f || brTruncate.y < 1f)
1579 tlTruncate.y = Mathf.Clamp01(pct);
1581 if (tlTruncate.y < 1f || tlTruncate.x < 1f || brTruncate.x < 1f)
1602 brTruncate.y = Mathf.Clamp01(pct);
1603 if (brTruncate.y < 1f || tlTruncate.x < 1f || brTruncate.x < 1f)
1626 uvRect = frameInfo.uvs;
1628 SetBleedCompensation();
1646 uvRect = frameInfo.uvs;
1647 SetBleedCompensation();
1656 scaleFactor = frameInfo.scaleFactor;
1657 topLeftOffset = frameInfo.topLeftOffset;
1658 bottomRightOffset = frameInfo.bottomRightOffset;
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;
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);
1677 if (m_spriteMesh == null)
1680 Vector2[] uvs = m_spriteMesh.uvs;
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;
1700 m_spriteMesh.UpdateUVs();
1705 public void TransformBillboarded(Transform t)
1728 if(m_spriteMesh != null)
1729 m_spriteMesh.UpdateColors(
color);
1737 get {
return color; }
1742 public void SetPixelToUV(
int texWidth,
int texHeight)
1744 Vector2 oldPPUV = pixelsPerUV;
1746 pixelsPerUV.x = texWidth;
1747 pixelsPerUV.y = texHeight;
1754 Rect uvs = frameInfo.uvs;
1756 if (uvs.width == 0 || uvs.height == 0 || oldPPUV.x == 0 || oldPPUV.y == 0)
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;
1764 public void SetPixelToUV(Texture tex)
1768 SetPixelToUV(tex.width, tex.height);
1779 if (spriteMesh != null && spriteMesh.material != null && spriteMesh.material.mainTexture != null)
1780 SetPixelToUV(spriteMesh.material.mainTexture);
1784 if (renderer != null && renderer.sharedMaterial != null && renderer.sharedMaterial.mainTexture != null)
1785 SetPixelToUV(renderer.sharedMaterial.mainTexture);
1797 if (
managed || renderer == null)
1800 renderer.material.mainTexture = tex;
1815 if (
managed || renderer == null)
1818 renderer.sharedMaterial = mat;
1820 SetPixelToUV(mat.mainTexture);
1832 get {
return renderCamera; }
1835 renderCamera = value;
1871 if (c == null || !m_started)
1875 Plane nearPlane =
new Plane(c.transform.forward, c.transform.position);
1877 if (!Application.isPlaying)
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)
1887 screenSize.x = c.pixelWidth;
1888 screenSize.y = c.pixelHeight;
1891 if (screenSize.x == 0)
1896 if (screenPlacer != null)
1897 screenPlacer.SetCamera(renderCamera);
1901 dist = nearPlane.GetDistanceToPoint(transform.position);
1902 worldUnitsPerScreenPixel = Vector3.Distance(c.ScreenToWorldPoint(
new Vector3(0, 1, dist)), c.ScreenToWorldPoint(
new Vector3(0, 0, dist)));
1910 screenSize.x = c.pixelWidth;
1911 screenSize.y = c.pixelHeight;
1913 if (screenPlacer != null)
1914 screenPlacer.SetCamera(renderCamera);
1918 dist = nearPlane.GetDistanceToPoint(transform.position);
1919 worldUnitsPerScreenPixel = Vector3.Distance(c.ScreenToWorldPoint(
new Vector3(0, 1, dist)), c.ScreenToWorldPoint(
new Vector3(0, 0, dist)));
1932 if (m_spriteMesh != null)
1933 m_spriteMesh.Hide(tf);
1957 get {
return new Vector2(
width / worldUnitsPerScreenPixel,
height / worldUnitsPerScreenPixel); }
1960 SetSize(value.x * worldUnitsPerScreenPixel, value.y * worldUnitsPerScreenPixel);
1971 get {
return new Vector2(uvRect.width * pixelsPerUV.x, uvRect.height * pixelsPerUV.y); }
1995 manager.RemoveSprite(
this);
2001 if (m_spriteMesh == null)
2003 else if (!(m_spriteMesh is SpriteMesh))
2012 get {
return m_started; }
2017 protected void DestroyMesh()
2020 if(m_spriteMesh != null)
2021 m_spriteMesh.sprite = null;
2022 m_spriteMesh = null;
2024 if (renderer != null)
2026 if (Application.isPlaying)
2029 DestroyImmediate(renderer);
2031 Object filter = gameObject.GetComponent(typeof(MeshFilter));
2034 if (Application.isPlaying)
2037 DestroyImmediate(filter);
2043 protected void AddMesh()
2045 m_spriteMesh =
new SpriteMesh();
2046 m_spriteMesh.sprite =
this;
2068 bleedCompensationUVMax = bleedCompensationUV * -2f;
2070 uvRect.x += bleedCompensationUV.x;
2071 uvRect.y += bleedCompensationUV.y;
2072 uvRect.xMax += bleedCompensationUVMax.x;
2073 uvRect.yMax += bleedCompensationUVMax.y;
2096 if(!
managed && m_spriteMesh != null)
2097 ((SpriteMesh)m_spriteMesh).SetWindingOrder(order);
2111 ((SpriteMesh_Managed)m_spriteMesh).drawLayer = layer;
2113 manager.SortDrawingOrder();
2126 SetBleedCompensation();
2141 SetBleedCompensation();
2145 if (!Application.isPlaying)
2146 CalcSizeUnitsPerUV();
2164 uvRect.x = tempUV.x;
2165 uvRect.y = tempUV.y;
2168 uvRect.xMax = tempUV.x;
2169 uvRect.yMax = tempUV.y;
2171 frameInfo.uvs = uvRect;
2173 SetBleedCompensation();
2197 return ((SpriteMesh)m_spriteMesh).mesh.vertices;
2199 return m_spriteMesh.vertices;
2209 if (m_spriteMesh == null)
2210 return Vector3.zero;
2212 Vector3[] verts = m_spriteMesh.vertices;
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));
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);
2234 get {
return clippingRect; }
2240 clippingRect = value;
2242 localClipRect = Rect3D.MultFast(clippingRect, transform.worldToLocalMatrix).GetRect();
2249 if (leftClipPct != 1f ||
2250 rightClipPct != 1f ||
2252 bottomClipPct != 1f)
2266 get {
return clipped; }
2272 if (value && !clipped)
2328 return unclippedTopLeft;
2345 return unclippedBottomRight;
2357 if (m_spriteMesh != null)
2358 return m_spriteMesh.vertices[0];
2360 return Vector3.zero;
2372 if (m_spriteMesh != null)
2373 return m_spriteMesh.vertices[2];
2375 return Vector3.zero;
2380 public ISpriteMesh spriteMesh
2382 get {
return m_spriteMesh; }
2385 m_spriteMesh = value;
2386 if (m_spriteMesh != null)
2388 if (m_spriteMesh.sprite !=
this)
2389 m_spriteMesh.sprite =
this;
2395 manager = ((SpriteMesh_Managed)m_spriteMesh).manager;
2401 public bool AddedToManager
2403 get {
return addedToManager; }
2404 set { addedToManager = value; }
2409 public abstract Vector2 GetDefaultPixelSize(PathFromGUIDDelegate guid2Path, AssetLoaderDelegate loader);
2427 if (pixelsPerUV.x == 0 || pixelsPerUV.y == 0)
2428 return Vector2.zero;
2430 return new Vector2(xy.x / pixelsPerUV.x, xy.y / pixelsPerUV.y);
2459 if (pixelsPerUV.x == 0 || pixelsPerUV.y == 0)
2460 return Vector2.zero;
2462 return new Vector2(xy.x / pixelsPerUV.x, (pixelsPerUV.y - xy.y - 1) / pixelsPerUV.y);
2492 public abstract void SetState(
int index);
2495 public ISpriteAnimatable prev
2497 get {
return m_prev; }
2498 set { m_prev = value; }
2501 public ISpriteAnimatable next
2503 get {
return m_next; }
2504 set { m_next = value; }
2509 public virtual void DoMirror()
2512 if (Application.isPlaying)
2520 if (screenSize.x == 0 || screenSize.y == 0)
2525 mirror =
new SpriteRootMirror();
2526 mirror.Mirror(
this);
2529 mirror.Validate(
this);
2533 if (mirror.DidChange(
this))
2536 mirror.Mirror(
this);
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
2549 public virtual void OnDrawGizmosSelected()
2555 public virtual void OnDrawGizmosSelected()
2562 public virtual void OnDrawGizmos()
2570 protected bool StringEndsWith(
string toSearch,
string sought)
2572 if (toSearch.Length < sought.Length)
2575 for (
int i = sought.Length - 1, j = toSearch.Length - 1; i >= 0; --i, --j)
2576 if (toSearch[j] != sought[i])
2587 public class SpriteRootMirror
2589 public bool managed;
2591 public int drawLayer;
2594 public float width, height;
2595 public Vector2 bleedCompensation;
2597 public Vector3 offset;
2599 public bool pixelPerfect;
2600 public bool autoResize;
2601 public Camera renderCamera;
2602 public bool hideAtStart;
2612 managed = s.managed;
2613 manager = s.manager;
2614 drawLayer = s.drawLayer;
2616 winding = s.winding;
2619 bleedCompensation = s.bleedCompensation;
2623 pixelPerfect = s.pixelPerfect;
2624 autoResize = s.autoResize;
2625 renderCamera = s.renderCamera;
2626 hideAtStart = s.hideAtStart;
2639 s.autoResize =
true;
2665 HandleManageState(s);
2675 HandleDrawLayerChange(s);
2678 if (s.
plane != plane)
2682 if (s.
width != width)
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)
2701 if (s.renderCamera != renderCamera)
2706 s.Hide(s.hideAtStart);
2715 protected virtual void HandleManageState(
SpriteRoot s)
2721 s.managed = managed;
2722 s.Managed = !managed;
2725 public virtual void UpdateManager(
SpriteRoot s)
2732 manager.RemoveSprite(s);
2734 s.manager.AddSprite(s);
2738 protected virtual void HandleDrawLayerChange(
SpriteRoot s)
2748 s.SetDrawLayer(s.drawLayer);
void Clear()
Removes all items from the list and ensures their prev and next references are cleared.
void End()
Ends iteration of the list and frees the iterator.
Color Color
Accessor for the object's current overall color tint.
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...
void SetFrameInfo(SPRITE_FRAME fInfo)
Sets the sprite's frame info, which includes UVs, offsets, etc.
virtual void SetSize(float w, float h)
Sets the physical dimensions of the sprite in the plane selected
void Add(T item)
Adds an item to our list
Vector3 UnclippedBottomRight
The bottom-right corner of the sprite when no clipping or trimming is applied.
void SetBleedCompensation(float x, float y)
Sets the bleed compensation to use (see bleedCompensation).
bool pixelPerfect
Automatically sizes the sprite so that it will display pixel-perfect on-screen. NOTE: If you change t...
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()!
bool NextNoRemove()
Moves Current to the next item in the list and does not call the associated list's End() when the end...
int drawLayer
The layer in which the sprite will be drawn if managed.
Vector3 GetCenterPoint()
Gets the center point of the sprite, taking into account the actual positions of vertices.
void SetAnchor(ANCHOR_METHOD a)
Sets the anchor method to use. See ANCHOR_METHOD
bool Begin(EZLinkedList< T > l)
Begin iterating through a list.
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...
virtual void SetCamera(Camera c)
Sets the camera to use when calculating a pixel-perfect sprite size.
float width
Width of the sprite in world space.
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.
virtual void SetColor(Color c)
Sets the sprite's color to the specified color.
void Remove(T item)
Removes the specified item from the list.
Vector2 PixelSpaceToUVSpace(int x, int y)
Converts pixel-space values to UV-space scalar values according to the currently assigned material...
bool MoveNext()
Moves Current to the next item in the list.
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...
virtual void UpdateUVs()
Applies any changes to the UVs to the actual sprite mesh.
void SetUVsFromPixelCoords(Rect pxCoords)
Sets the sprite's UVs from pixel coordinates.
bool IsHidden()
Returns whether the sprite is currently set to be hideAtStart (whether its mesh renderer component is...
void CalcSize()
Recalculates the width and height of the sprite based upon the change in its UV dimensions (autoResiz...
Rect GetRect()
Returns a Rect just using the x and y coordinates of the 3D rect.
Represents a 2D rect that exists in 3D space and is not axis-aligned.
WINDING_ORDER winding
The winding order of the sprite's polygons - determines the direction the sprite will "face"...
void SetDrawLayer(int layer)
Sets the draw layer of the sprite (only applies to managed sprites).
Vector2 PixelSpaceToUVSpace(Vector2 xy)
Converts pixel-space values to UV-space scalar values according to the currently assigned material...
virtual void TruncateRight(float pct)
Truncates the right edge of the sprite to the specified percentage. 1 == no truncation 0 == complete ...
Vector3 TopLeft
Returns the position of the top-left vertex of the sprite after any clipping or trimming.
Vector2 PixelCoordToUVCoord(Vector2 xy)
Converts pixel coordinates to UV coordinates according to the currently assigned material. NOTE: This is for converting coordinates and will reverse the Y component accordingly. For converting widths and heights, use PixelSpaceToUVSpace()!
bool managed
When true, the sprite will be managed by the selected sprite manager script. When false...
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.
void UpdateCamera()
Updates any camera-dependent settings, such as the calculated pixel-perfect size. Use this with Broad...
ANCHOR_METHOD Anchor
Accessor for the object's anchor method.
Vector3 UnclippedTopLeft
The top-left corner of the sprite when no clipping or trimming is applied.
Rect GetUVs()
Returns the current UV coordinates of the sprite (before bleed compensation).
void SetCamera()
A no-argument version of SetCamera() that simply re-assigns the same camera to the object...
void CalcPixelToUV()
Recalculates the pixel-to-UV ratio based on the current texture.
Vector3 offset
Offsets the sprite, in world space, from the center of its GameObject.
void SetWindingOrder(WINDING_ORDER order)
Sets the winding order to use. See WINDING_ORDER.
void SetMaterial(Material mat)
Changes the material to be used by the sprite. NOTE: This can only be used with non-managed sprites...
Vector2 ImageSize
Gets the width and height of the image the sprite is displaying. NOTE: This is not the number of scre...
Vector3 BottomRight
Returns the position of the bottom-right vertex of the sprite after any clipping or trimming...
A custom doubly linked list generic class.
Vector3[] GetVertices()
Returns a reference to the sprite's vertices. NOTE: You can only directly modify the sprite's vertice...
virtual void Untruncate()
Removes any truncation.
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.
virtual Camera RenderCamera
Accessor for the camera that will be used to render this object. Use this to ensure the object is pro...
The root class of all sprites. Does not assume any animation capabilities or atlas packing...
void FromPoints(Vector3 tl, Vector3 tr, Vector3 bl)
Defines a 3D rectangle from three points which must form a right-triangle.
virtual void TruncateBottom(float pct)
Truncates the bottom edge of the sprite to the specified percentage. 1 == no truncation 0 == complete...
void SetTexture(Texture2D tex)
Changes the texture to be used by the sprite's material. NOTE: This will cause the sprite not to batc...
float height
Height of the sprite in world space.
virtual Rect3D ClippingRect
The rect against which the sprite should be clipped. The sprite will be immediately clipped by this r...
bool Next()
Moves Current to the next item in the list.
void SetOffset(Vector3 o)
Sets the offset of the sprite from its GameObject. See offset
Vector2 PixelSize
Gets/Sets the width and height of the sprite in pixels as it appears on-screen.
void End(EZLinkedListIterator< T > it)
Ends iteration of the list using the specified iterator. The iterator is freed for use again later...
Vector2 bleedCompensation
Will contract the UV edges of the sprite by the specified amount to prevent "bleeding" from neighbori...
ANCHOR_METHOD anchor
Anchor method to use. ANCHOR_METHOD
SpriteManager manager
Reference to the manager which will manage this sprite, provided managed is set to true...
virtual void Delete()
If non-managed, call Delete() before destroying this component or the GameObject to which it is attac...
virtual void Unclip()
Removes any clipping that is being applied to the sprite.
void FromRect(Rect r)
Defines a Rect3D from a standard Rect.
SPRITE_PLANE plane
The plane in which the sprite will be drawn.
virtual void Clear()
Resets important sprite values to defaults for reuse.
virtual void TruncateLeft(float pct)
Truncates the left edge of the sprite to the specified percentage. 1 == no truncation 0 == complete t...
Rect3D(Rect r)
Constructs a new 3D rectangle from a standard Rect.
bool hideAtStart
Whether the sprite will be hideAtStart when it starts.
bool Managed
Sets the sprite to a managed or batched state.
void SetPlane(SPRITE_PLANE p)
Sets the plane in which the sprite is to be drawn. See: SPRITE_PLANE
void SetUVs(Rect uv)
Sets the sprite's UVs to the specified values.
virtual bool Clipped
Accessor for whether the sprite is to be clipped by any already-specified clipping rect...
bool ignoreClipping
When true, the sprite will not be clipped.
void SetBleedCompensation(Vector2 xy)
Sets the bleed compensation to use (see bleedCompensation).
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.
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.
EZLinkedListIterator< T > Begin()
Gets an iterator with which to iterate through the list.
Rect3D(Vector3 tl, Vector3 tr, Vector3 bl)
Constructs a new 3D rectangle from three points which must form a right-triangle. ...