- 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.
22 lines
337 B
C#
22 lines
337 B
C#
|
|
using UdonSharp;
|
|
using UnityEngine;
|
|
using VRC.SDKBase;
|
|
using VRC.Udon;
|
|
|
|
namespace myro.arcade
|
|
{
|
|
public class HeliCaveGameSettings : GameSettings
|
|
{
|
|
public int GameDuration = 120;
|
|
|
|
[HideInInspector]
|
|
public int NumberWalls = 15; //currently hidden, because a different number can cause some issues
|
|
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|