Files
Simulation/Assets/WorkSpace/LH/LogicData/LogicPlacedObjectButton.cs
2025-05-15 11:44:39 +09:00

17 lines
306 B
C#

using UnityEngine;
using Octopus.Simulator;
using TMPro;
namespace Octopus.Simulator
{
public class LogicPlacedObjectButton : MonoBehaviour
{
[SerializeField]
TMP_Text text_Label;
public void Set(string name)
{
text_Label.text = name;
}
}
}