Files
ChunilENG/Assets/DownloadAssets/3D Interactive Bar Chart/2.Scripts/CommanForGraph/GraphPoint.cs
정영민 2dd5d814a7 update
2025-02-20 09:59:37 +09:00

37 lines
608 B
C#

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
}
}