TMP_SpriteGlyph.cs 2.46 KB
Newer Older
BlackAngle233's avatar
212    
BlackAngle233 committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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;
        }
    }
BlackAngle233's avatar
BlackAngle233 committed
61
}