This commit is contained in:
2026-05-19 17:39:03 +07:00
parent bf0ebe447d
commit 5da832bb57
559 changed files with 69543 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Rive.Components
{
/// <summary>
/// Represents the current status of a Rive widget.
/// </summary>
public enum WidgetStatus
{
/// <summary>
/// The widget has not yet been initialized. This is the default state.
/// </summary>
Uninitialized = 0,
/// <summary>
/// The widget is currently setting up the Rive graphic.
/// </summary>
Loading = 1,
/// <summary>
/// The widget is ready to display the Rive graphic.
/// </summary>
Loaded = 2,
/// <summary>
/// An error occurred while loading the Rive graphic.
/// </summary>
Error = 3
}
}