Jamie Greunbaum 542e04afed - Replaced one skee-ball machine with two arcade machines.
- Added Black Horse And The Cherry Tree by KT Tunstall to the horse playlist.
- Added Buckin' My Horse by Sir Mix-A-Lot to the horse playlist.
2026-02-11 02:58:41 -05:00

18 lines
391 B
C#

using UdonSharp;
using UnityEngine;
using VRC.SDKBase;
using VRC.Udon;
namespace myro.arcade
{
[UdonBehaviourSyncMode(BehaviourSyncMode.None)]
public class GameSettings : UdonSharpBehaviour
{
public RenderTexture RenderTextureToUse;
public string ScreenShaderEmissionPropertyName = "_EmissionMap";
public SharedScoreboard SharedScoreboardPrefab;
public AudioClip Music;
}
}