Jamie Greunbaum ef9ccfef19 - Added trees outside the stable.
- Added a video player with horse songs preloaded.
- Adjusted post-processing to be less harsh outdoors, and more visible indoors.
2025-05-03 01:57:06 -04:00

21 lines
453 B
C#

using UdonSharp;
using UnityEngine;
using VRC.SDKBase;
using VRC.Udon;
namespace UdonSharp.Video.Examples
{
[UdonBehaviourSyncMode(BehaviourSyncMode.NoVariableSync)]
[AddComponentMenu("Udon Sharp/Video/Examples/Resync Button")]
public class ResyncButton : UdonSharpBehaviour
{
public USharpVideoPlayer videoPlayer;
public void OnResyncPressed()
{
videoPlayer.ForceSyncVideo();
}
}
}