Files
2026-01-08 20:43:08 +05:00

15 lines
291 B
C#

using UnityEngine;
using UnityEngine.UIElements;
namespace Unity.U2D.Animation.Sample
{
internal class PressPlayUI : MonoBehaviour
{
void OnEnable()
{
var uiDocument = GetComponent<UIDocument>();
uiDocument.enabled = false;
}
}
}