Files
ChunilENG/Assets/DownloadAssets/3D Interactive Bar Chart/2.Scripts/CommanForGraph/GraphPoint.cs

37 lines
608 B
C#
Raw Normal View History

2025-02-20 09:59:37 +09:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using TMPro;
namespace Graph.VittorCloud
{
public class GraphPoint : MonoBehaviour
{
#region publicVariable
public TextMeshPro label;
public Transform labelContainer;
public string labelText
{
get { return labelValue; }
set
{
labelValue = value;
label.text = labelValue;
}
}
#endregion
#region privateVariable
string labelValue;
#endregion
}
}