You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
519 B
C#
23 lines
519 B
C#
using UnityEditor;
|
|
using UnityEngine;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ES3Internal
|
|
{
|
|
[CustomEditor(typeof(ES3AutoSave))]
|
|
public class ES3AutoSaveEditor : Editor
|
|
{
|
|
public override void OnInspectorGUI()
|
|
{
|
|
if (target == null)
|
|
return;
|
|
|
|
DrawDefaultInspector();
|
|
|
|
if (GUILayout.Button("Manage Auto Save Settings"))
|
|
ES3Editor.ES3Window.InitAndShowAutoSave();
|
|
}
|
|
}
|
|
} |