summaryrefslogtreecommitdiff
path: root/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SpriteGlyph.cs
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-08-20 23:40:50 -0400
committerAndrew Lee <alee14498@protonmail.com>2020-08-20 23:40:50 -0400
commit3af4c218c0e70167db23a6303d2af30aff37d2fe (patch)
tree927f29edcf54ab562f40f3d1c6cb69287c7f5980 /Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SpriteGlyph.cs
parentb6daed0af784f4e9bc13329dd87c671b06ee1c65 (diff)
downloadProject-Sandbox-3af4c218c0e70167db23a6303d2af30aff37d2fe.tar.gz
Project-Sandbox-3af4c218c0e70167db23a6303d2af30aff37d2fe.tar.bz2
Project-Sandbox-3af4c218c0e70167db23a6303d2af30aff37d2fe.zip
Removed a bunch of stuff; Changes
Diffstat (limited to 'Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SpriteGlyph.cs')
-rw-r--r--Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SpriteGlyph.cs61
1 files changed, 0 insertions, 61 deletions
diff --git a/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SpriteGlyph.cs b/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SpriteGlyph.cs
deleted file mode 100644
index c57b84c..0000000
--- a/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SpriteGlyph.cs
+++ /dev/null
@@ -1,61 +0,0 @@
-using System;
-using UnityEngine;
-using UnityEngine.TextCore;
-
-namespace TMPro
-{
- /// <summary>
- /// The visual representation of the sprite character using this glyph.
- /// </summary>
- [Serializable]
- public class TMP_SpriteGlyph : Glyph
- {
- /// <summary>
- /// An optional reference to the underlying sprite used to create this glyph.
- /// </summary>
- public Sprite sprite;
-
-
- // ********************
- // CONSTRUCTORS
- // ********************
-
- public TMP_SpriteGlyph() { }
-
- /// <summary>
- /// Constructor for new sprite glyph.
- /// </summary>
- /// <param name="index">Index of the sprite glyph.</param>
- /// <param name="metrics">Metrics which define the position of the glyph in the context of text layout.</param>
- /// <param name="glyphRect">GlyphRect which defines the coordinates of the glyph in the atlas texture.</param>
- /// <param name="scale">Scale of the glyph.</param>
- /// <param name="atlasIndex">Index of the atlas texture that contains the glyph.</param>
- public TMP_SpriteGlyph(uint index, GlyphMetrics metrics, GlyphRect glyphRect, float scale, int atlasIndex)
- {
- this.index = index;
- this.metrics = metrics;
- this.glyphRect = glyphRect;
- this.scale = scale;
- this.atlasIndex = atlasIndex;
- }
-
- /// <summary>
- /// Constructor for new sprite glyph.
- /// </summary>
- /// <param name="index">>Index of the sprite glyph.</param>
- /// <param name="metrics">Metrics which define the position of the glyph in the context of text layout.</param>
- /// <param name="glyphRect">GlyphRect which defines the coordinates of the glyph in the atlas texture.</param>
- /// <param name="scale">Scale of the glyph.</param>
- /// <param name="atlasIndex">Index of the atlas texture that contains the glyph.</param>
- /// <param name="sprite">A reference to the Unity Sprite representing this sprite glyph.</param>
- public TMP_SpriteGlyph(uint index, GlyphMetrics metrics, GlyphRect glyphRect, float scale, int atlasIndex, Sprite sprite)
- {
- this.index = index;
- this.metrics = metrics;
- this.glyphRect = glyphRect;
- this.scale = scale;
- this.atlasIndex = atlasIndex;
- this.sprite = sprite;
- }
- }
-} \ No newline at end of file