Add assets
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user