2023-08-26 19:48:31 -04:00

19 lines
598 B
C#

using Newtonsoft.Json;
using System.ComponentModel;
namespace NewHorizons.External.Modules.Props.Quantum;
[JsonObject]
internal class StatesQuantumGroupInfo : BaseQuantumGroupInfo
{
/// <summary>
/// Optional. If this is true, then the states will be presented in order, rather than in a random order
/// </summary>
public bool sequential;
/// <summary>
/// Optional. Only used if `sequential` is true. If this is false, then after the last state has appeared, the object will no longer change state
/// </summary>
[DefaultValue(true)] public bool loop = true;
}