- 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.
16 lines
280 B
C#
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();
|
|
}
|
|
}
|