Renamed all attributes and drawers to have postfix of either Attribute or AttributeDrawer
This commit is contained in:
parent
81bac32538
commit
dc15bfec81
161 changed files with 265 additions and 265 deletions
14
Runtime/AccessModifiers/DisableFieldInPlayModeAttribute.cs
Normal file
14
Runtime/AccessModifiers/DisableFieldInPlayModeAttribute.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
using UnityEngine.Scripting;
|
||||
|
||||
namespace Module.Inspector
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)]
|
||||
public sealed class DisableFieldInPlayModeAttribute : AccessModifierPropertyAttribute
|
||||
{
|
||||
[Preserve]
|
||||
public DisableFieldInPlayModeAttribute()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue