CarmenSandiego/Assets/UdonSharp/StationGraphUSharp.cs
Jamie Greunbaum 7657b8759f - Built out the basic layout for the game's rooms.
- Added a new music track for between rounds 1 and 2.
- Music now plays between rounds.
- Round 2 now resets properly, even when not reloading the entire case.
2025-08-01 16:02:11 -04:00

16 lines
280 B
C#

using UdonSharp;
using VRC.SDKBase;
[UdonBehaviourSyncMode(BehaviourSyncMode.Manual)]
public class StationGraphUSharp : UdonSharpBehaviour
{
public override void Interact()
{
Networking.LocalPlayer.UseAttachedStation();
RequestSerialization();
base.Interact();
}
}