add basic inventory, fading walls

This commit is contained in:
2026-02-17 15:26:34 -06:00
parent 6baa6956bf
commit 7123238daa
30 changed files with 6594 additions and 255 deletions
@@ -0,0 +1,20 @@
using TMPro;
using UnityEngine;
public class ItemDescriptionUI : MonoBehaviour
{
public string descriptionText = "";
TextMeshProUGUI text;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
text = GetComponent<TextMeshProUGUI>();
}
// Update is called once per frame
void Update()
{
text.text = descriptionText;
}
}