17 lines
306 B
C#
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;
|
|
}
|
|
}
|
|
} |