Files
JJBB/Assets/Project/Script/GUI/Base/UIImgText/UIImgChar.cs

14 lines
257 B
C#
Raw Normal View History

2024-08-23 15:49:34 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class UIImgChar : MonoBehaviour
{
public char _Char;
public Sprite _Image;
public float _CharWidth;
public float _CharHeight;
}