- 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.
29 lines
410 B
C#
29 lines
410 B
C#
|
|
using UdonSharp;
|
|
using UnityEngine;
|
|
using VRC.SDKBase;
|
|
using VRC.Udon;
|
|
|
|
namespace myro.arcade
|
|
{
|
|
public class Wall : UdonSharpBehaviour
|
|
{
|
|
public MainGame MainGameInstance;
|
|
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
private void OnTriggerEnter(Collider obj)
|
|
{
|
|
Controllable controllable = obj.gameObject.GetComponent<Controllable>();
|
|
|
|
if (controllable != null)
|
|
{
|
|
MainGameInstance.Crashed();
|
|
}
|
|
}
|
|
}
|
|
}
|