- 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.
21 lines
367 B
C#
21 lines
367 B
C#
|
|
using UdonSharp;
|
|
using UnityEngine;
|
|
using VRC.SDKBase;
|
|
using VRC.Udon;
|
|
|
|
namespace myro.arcade
|
|
{
|
|
[UdonBehaviourSyncMode(BehaviourSyncMode.None)]
|
|
public class ColliderParameterSetter : UdonSharpBehaviour
|
|
{
|
|
public Collider ColliderInstance;
|
|
public float ContactOffset = 0.0001f;
|
|
|
|
void Start()
|
|
{
|
|
ColliderInstance.contactOffset = ContactOffset;
|
|
}
|
|
}
|
|
}
|