- 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.
18 lines
391 B
C#
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;
|
|
}
|
|
}
|