// ------------------
        protected void InitTouchControlInspector()
        {
            TouchControl c = (TouchControl)this.target;

            this.disablingConditionSetInsp = new DisablingConditionSetInspector(new GUIContent("Disabling Conditions"), c.disablingConditions, c.rig, c);

            this.swipeOverTargetListInsp = new ObjectListInspector(new GUIContent("Swipe-Over Target List", "List of touch controls that can be swiped over from this control."),
                                                                   c, typeof(TouchControl), c.swipeOverTargetList);
        }
Example #2
0
 // -------------------
 public ObjectElemInspector(ObjectListInspector listInsp) : base(listInsp)
 {
 }