You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
607 B
21 lines
607 B
using UnityEditor; |
|
|
|
namespace NaughtyAttributes.Editor |
|
{ |
|
public class NaughtyProperty |
|
{ |
|
public SerializedProperty serializedProperty; |
|
|
|
public LabelAttribute labelAttribute; |
|
|
|
public SpecialCaseDrawerAttribute specialCaseDrawerAttribute; |
|
|
|
public ShowIfAttributeBase showIfAttribute; |
|
public EnableIfAttributeBase enableIfAttribute; |
|
public ReadOnlyAttribute readOnlyAttribute; |
|
public ValidatorAttribute[] validatorAttributes; |
|
|
|
public bool cachedIsVisible = true; |
|
public bool cachedIsEnabled = true; |
|
} |
|
}
|
|
|