首次提交
This commit is contained in:
14
Assets/Plugins/Easy Save 3/Editor/ES3InspectorInfoEditor.cs
Normal file
14
Assets/Plugins/Easy Save 3/Editor/ES3InspectorInfoEditor.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
using UnityEngine.SceneManagement;
|
||||
using System;
|
||||
using System.Collections;
|
||||
|
||||
[CustomEditor(typeof(ES3InspectorInfo))]
|
||||
public class ES3InspectorInfoEditor : Editor
|
||||
{
|
||||
public override void OnInspectorGUI()
|
||||
{
|
||||
EditorGUILayout.HelpBox(((ES3InspectorInfo)target).message, MessageType.Info);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user