HKI Core
BooleanEditor.cs
Go to the documentation of this file.
1 using UnityEngine;
2 using UnityEditor;
3 
4 namespace HKI.Core.Variables.Editor
5 {
9  [CustomEditor(typeof(Boolean))]
10  public class BooleanEditor : HKIVarGenericEditor<bool>
11  {
12 
13  }
14 }
This is the standard custom inspector for all HKIVars
Implementation of a boolean value as a HKIVar via HKIVarGeneric.
Definition: Boolean.cs:16
Custom inspector for the Boolean class. All the code is inside the HKIVarGenericEditor class but a cu...