20 lines
350 B
C#
20 lines
350 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
|
|
namespace BNG {
|
|
|
|
[CustomEditor(typeof(HandPose))]
|
|
public class HandPoseEditor : Editor {
|
|
public override void OnInspectorGUI() {
|
|
|
|
// HandPose pose = (HandPose)target;
|
|
|
|
base.OnInspectorGUI();
|
|
}
|
|
}
|
|
}
|
|
|