mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-06 01:00:16 +00:00
19 lines
266 B
C#
19 lines
266 B
C#
using QSB.Utility;
|
|
using UnityEngine;
|
|
|
|
namespace QSB.Tools
|
|
{
|
|
public class QSBProbe : MonoBehaviour
|
|
{
|
|
public void SetState(bool state)
|
|
{
|
|
if (state)
|
|
{
|
|
gameObject.SetActive(true);
|
|
gameObject.Show();
|
|
return;
|
|
}
|
|
gameObject.Hide();
|
|
}
|
|
}
|
|
} |