From b71d5611db087772179505ed10c82ca958900df7 Mon Sep 17 00:00:00 2001 From: chai Date: Thu, 15 Oct 2020 07:04:38 +0800 Subject: +advanced inspector --- .../Examples/CSharp/AIExample13_Expandable.cs | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Assets/ThirdParty/AdvancedInspector/Examples/CSharp/AIExample13_Expandable.cs (limited to 'Assets/ThirdParty/AdvancedInspector/Examples/CSharp/AIExample13_Expandable.cs') diff --git a/Assets/ThirdParty/AdvancedInspector/Examples/CSharp/AIExample13_Expandable.cs b/Assets/ThirdParty/AdvancedInspector/Examples/CSharp/AIExample13_Expandable.cs new file mode 100644 index 00000000..41e3a722 --- /dev/null +++ b/Assets/ThirdParty/AdvancedInspector/Examples/CSharp/AIExample13_Expandable.cs @@ -0,0 +1,39 @@ +using UnityEngine; +using System; +using System.Collections; + +using AdvancedInspector; + +[AdvancedInspector] +public class AIExample13_Expandable : MonoBehaviour +{ + // The expandable attribute is used to control if an item can not be expanded, or if it should be expanded by default. + [Inspect, Expandable(Expanded = true)] + public ExpandableClass expandedField; + + // Preventing an object from being expandable is sometime useful when you want to display its inner content differently. + [Inspect, Expandable(Expandable = false)] + public ExpandableClass notExpandableField; + + // This class is not expandable by default. + [Inspect] + public NotExpandableClass notExpandableObject; + + // Class with the AdvancedInspector attribute are automaticly inlinable/expandable. + [AdvancedInspector, Serializable] + public class ExpandableClass + { + [Inspect] + public float myField; + } + + // It is possible to prevent that like this; + // This is useful when you build your own base type similar to how a float is displayed. + // A good example is the Guid class. + [AdvancedInspector(Expandable = false), Serializable] + public class NotExpandableClass + { + [Inspect] + public float myField; + } +} -- cgit v1.1-26-g67d0