init free 2.1.3

This commit is contained in:
2025-08-02 20:11:41 +08:00
commit 24bc0ab149
871 changed files with 312178 additions and 0 deletions
@@ -0,0 +1,18 @@
using Nova;
using UnityEngine;
using UnityEngine.Scripting.APIUpdating;
namespace NovaSamples.UIControls
{
/// <summary>
/// An <see cref="ItemVisuals"/> for a simple toggle control. Inherits from <see cref="ButtonVisuals"/>.
/// </summary>
[System.Serializable]
[MovedFrom(false, null, "Assembly-CSharp")]
public class ToggleVisuals : ButtonVisuals
{
[Header("Toggle Fields")]
[Tooltip("The UIBlock used to indicate the underlying \"Toggled On\" or \"Toggled Off\" state.")]
public UIBlock IsOnIndicator;
}
}