Added extra sliders for audio (not audio logic not yet implemented) and got elevator outer buttons firing.

This commit is contained in:
2025-11-29 00:04:17 +02:00
parent 60b9f21a61
commit 187c700f9c
47 changed files with 2475 additions and 104 deletions

View File

@@ -0,0 +1,19 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MenuReference : MonoBehaviour
{
public List<MenuTeleportButton> buttons;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}