HKI Core
Vector3Editor.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(HKI.Core.Variables.Vector3))]
10  public class Vector3Editor : HKIVarGenericEditor<UnityEngine.Vector3>
11  {
12 
13  }
14 }
This is the standard custom inspector for all HKIVars
Custom inspector for the Vector3 class. All the code is inside the HKIVarGenericEditor class but a cu...
Implementation of a Vector3 value as a HKIVar via HKIVarGeneric.
Definition: Vector3.cs:14