diff options
author | chai <chaifix@163.com> | 2020-10-15 19:05:22 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2020-10-15 19:05:22 +0800 |
commit | f049177e20a276049c61edbad631c1b2bbdd5706 (patch) | |
tree | 7d1a1cd9b690a5d9a8b9a65554a191d6ec769601 /Assets/Plugins/AdvancedInspector/Attributes/ReadOnly.cs | |
parent | 6990a0d1fbdcbbf404f40713363ac1a148c8840a (diff) |
-advanced inspector
+odin
Diffstat (limited to 'Assets/Plugins/AdvancedInspector/Attributes/ReadOnly.cs')
-rw-r--r-- | Assets/Plugins/AdvancedInspector/Attributes/ReadOnly.cs | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/Assets/Plugins/AdvancedInspector/Attributes/ReadOnly.cs b/Assets/Plugins/AdvancedInspector/Attributes/ReadOnly.cs deleted file mode 100644 index 145f1167..00000000 --- a/Assets/Plugins/AdvancedInspector/Attributes/ReadOnly.cs +++ /dev/null @@ -1,84 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Reflection; - -using UnityEngine; - -namespace AdvancedInspector -{ - /// <summary> - /// Makes a Property read only (cannot be modified) - /// It's grayed out in the inspector, even if there's a setter. - /// </summary> - [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Method, AllowMultiple = false)] - public class ReadOnlyAttribute : Attribute, IListAttribute, IRuntimeAttribute<bool> - { - public delegate bool ReadOnlyDelegate(); - public delegate bool ReadOnlyStaticDelegate(ReadOnlyAttribute readOnly, object instance, object value); - - #region IRuntime Implementation - private string methodName = ""; - - public string MethodName - { - get { return methodName; } - } - - public Type Template - { - get { return typeof(ReadOnlyDelegate); } - } - - public Type TemplateStatic - { - get { return typeof(ReadOnlyStaticDelegate); } - } - - private List<Delegate> delegates = new List<Delegate>(); - - public List<Delegate> Delegates - { - get { return delegates; } - set { delegates = value; } - } - - public bool Invoke(int index, object instance, object value) - { - if (delegates.Count == 0 || index >= delegates.Count) - return true; - - try - { - if (delegates[index].Target == null) - { - return (bool)delegates[index].DynamicInvoke(this, instance, value); - } - else - { - return (bool)delegates[index].DynamicInvoke(); - } - } - catch (Exception e) - { - if (e is TargetInvocationException) - e = ((TargetInvocationException)e).InnerException; - - Debug.LogError(string.Format("Invoking a method to retrieve a ReadOnly attribute failed. The exception was \"{0}\".", e.Message)); - return false; - } - } - #endregion - - public ReadOnlyAttribute() { } - - public ReadOnlyAttribute(Delegate method) - { - this.delegates.Add(method); - } - - public ReadOnlyAttribute(string methodName) - { - this.methodName = methodName; - } - } -}
\ No newline at end of file |