tnt graphics, bug fixes, folder organization

This commit is contained in:
2026-03-28 20:47:10 -05:00
parent 57b14d4ba9
commit 6491a3df11
45 changed files with 10533 additions and 148 deletions
+28
View File
@@ -0,0 +1,28 @@
using UnityEngine;
public class TouchCubeTest : Interactable
{
public override void Interact()
{
// do nothing
}
public override void MoveInsideRange()
{
if (GameManager.Instance.Storybools.hasHelpedSam)
{
Debug.Log("You've already touched the cube!");
}
else
{
Debug.Log("Touched the cube!");
GameManager.Instance.Storybools.hasHelpedSam = true;
SaveSystem.Save();
}
}
public override void MoveOutsideRange()
{
// do nothing
}
}