Files
Two-World/Assets/Cainos/Third Party/Lucid Editor/Runtime/Attributes/DisableIfAttribute.cs
2025-05-08 16:03:30 +09:00

16 lines
352 B
C#

using System;
using UnityEngine;
namespace Cainos.LucidEditor
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Method)]
public class DisableIfAttribute : Attribute
{
public readonly string condition;
public DisableIfAttribute(string condition)
{
this.condition = condition;
}
}
}