Files
Robii Aragon fd87a6ffd5 add ckg
plantilla base para movimiento básico
2026-02-05 05:07:55 -08:00

31 lines
523 B
C#

using UnityEngine;
#if UNITY_EDITOR
using UnityEditor;
[CustomEditor (typeof(saveGameSystem))]
public class saveGameSystemEditor : Editor
{
saveGameSystem manager;
void OnEnable ()
{
manager = (saveGameSystem)target;
}
public override void OnInspectorGUI ()
{
DrawDefaultInspector ();
EditorGUILayout.Space ();
GUILayout.Label ("EDITOR BUTTONS", EditorStyles.boldLabel);
EditorGUILayout.Space ();
if (GUILayout.Button ("Show Save Info Debug")) {
manager.showSaveInfoDebug ();
}
}
}
#endif