Nearly finished.....

This commit is contained in:
2022-08-31 00:31:02 -07:00
parent 59d65e0e8c
commit 83bd769167
24 changed files with 2828 additions and 42 deletions

View File

@@ -0,0 +1,13 @@
using UnityEngine;
namespace Scampz.GameJam.Assets.Scripts.Player
{
public class OpenVoid : MonoBehaviour
{
private void Update()
{
if (UnlockSanctumState.Instance.VoidOpened)
gameObject.SetActive(false);
}
}
}