Warp traps and tidying up the house

This commit is contained in:
2025-12-04 10:53:21 +00:00
parent e0c93be280
commit 00a433132b
38 changed files with 4036 additions and 192 deletions

View File

@@ -5,7 +5,7 @@ public class InteractionUI : MonoBehaviour
{
public static InteractionUI Instance; // Singleton for easy access
public TextMeshProUGUI promptText;
void Awake()
{
if (Instance == null) Instance = this;
@@ -14,7 +14,7 @@ public class InteractionUI : MonoBehaviour
void Start()
{
// Hide text at start
if(promptText != null) promptText.text = "";
if (promptText != null) promptText.text = "";
}
public void UpdatePrompt(string message)