quantum-space-buddies/QSB/Tools/QSBProbe.cs

19 lines
266 B
C#
Raw Normal View History

using QSB.Utility;
using UnityEngine;
namespace QSB.Tools
{
2020-12-02 21:23:01 +00:00
public class QSBProbe : MonoBehaviour
{
public void SetState(bool state)
{
if (state)
{
2020-12-11 23:13:13 +00:00
gameObject.SetActive(true);
gameObject.Show();
return;
2020-12-02 21:23:01 +00:00
}
gameObject.Hide();
}
}
2020-12-03 08:28:05 +00:00
}