12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using System;
- using UnityEngine;
- using UnityEngine.TextCore;
- namespace TMPro
- {
-
-
-
- [Serializable]
- public class TMP_SpriteGlyph : Glyph
- {
-
-
-
- public Sprite sprite;
-
-
-
- public TMP_SpriteGlyph() { }
-
-
-
-
-
-
-
-
- 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;
- }
-
-
-
-
-
-
-
-
-
- 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;
- }
- }
- }
|