CarmenSandiego/Assets/UdonSharp/PlayerPermissions/PermissionsPanelPlayerEntry.cs
Jamie Greunbaum 3ca027c381 - Added an admin panel, activated by pressing Jump while holding the host card.
- Improved the host card interface, and added more info between questions.
- Started preliminary work on a permissions system.
2025-06-05 19:08:34 -04:00

18 lines
362 B
C#

using UdonSharp;
using UnityEngine;
using TMPro;
using VRC.SDKBase;
using VRC.Udon;
using UnityEngine.UI;
[UdonBehaviourSyncMode(BehaviourSyncMode.Manual)]
public class PermissionsPanelPlayerEntry : UdonSharpBehaviour
{
public Toggle AdminToggle;
public Toggle HostToggle;
public Toggle CameraToggle;
public TextMeshProUGUI PlayerNameUI;
}