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

43 lines
1020 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
namespace UdonSharp.Video.UI
{
[AddComponentMenu("Udon Sharp/Video/UI/Style Markup")]
internal class UIStyleMarkup : MonoBehaviour
{
public enum StyleClass
{
Background,
FieldBackground,
ButtonBackground,
ScrollBarHandle,
ScrollBarProgress,
Icon,
IconDropShadow,
HighlightedButton,
PlaceholderText,
Text,
TextDropShadow,
InvertedText,
RedIcon,
InvertedIcon,
TextHighlight,
TextCaret,
}
#pragma warning disable CS0649
public StyleClass styleClass;
public Graphic targetGraphic;
#pragma warning restore CS0649
private void Reset()
{
hideFlags = HideFlags.DontSaveInBuild;
targetGraphic = GetComponent<Graphic>();
}
}
}