mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-14 20:00:09 +00:00
62 lines
2.1 KiB
C#
62 lines
2.1 KiB
C#
/************************************************/
|
|
/* */
|
|
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
/* https://github.com/monitor1394 */
|
|
/* */
|
|
/************************************************/
|
|
|
|
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
namespace XCharts
|
|
{
|
|
/// <summary>
|
|
/// Editor class used to edit UI XChartsMgr.
|
|
/// </summary>
|
|
|
|
[CustomEditor(typeof(XChartsMgr), false)]
|
|
public class XChartsMgrEditor : Editor
|
|
{
|
|
protected XChartsMgr m_Target;
|
|
protected SerializedProperty m_Script;
|
|
protected SerializedProperty m_NowVersion;
|
|
protected SerializedProperty m_NewVersion;
|
|
|
|
protected virtual void OnEnable()
|
|
{
|
|
m_Target = (XChartsMgr)target;
|
|
m_Script = serializedObject.FindProperty("m_Script");
|
|
m_NowVersion = serializedObject.FindProperty("m_NowVersion");
|
|
m_NewVersion = serializedObject.FindProperty("m_NewVersion");
|
|
}
|
|
|
|
public override void OnInspectorGUI()
|
|
{
|
|
if (m_Target == null && target == null)
|
|
{
|
|
base.OnInspectorGUI();
|
|
return;
|
|
}
|
|
serializedObject.Update();
|
|
EditorGUILayout.PropertyField(m_NowVersion);
|
|
EditorGUILayout.PropertyField(m_NewVersion);
|
|
if (GUILayout.Button("Check Update"))
|
|
{
|
|
CheckVersionEditor.ShowWindow();
|
|
}
|
|
if (GUILayout.Button("Github Homepage"))
|
|
{
|
|
Application.OpenURL("https://github.com/monitor1394/unity-ugui-XCharts");
|
|
}
|
|
if (GUILayout.Button("Star Support"))
|
|
{
|
|
Application.OpenURL("https://github.com/monitor1394/unity-ugui-XCharts/stargazers");
|
|
}
|
|
if (GUILayout.Button("Issues"))
|
|
{
|
|
Application.OpenURL("https://github.com/monitor1394/unity-ugui-XCharts/issues");
|
|
}
|
|
serializedObject.ApplyModifiedProperties();
|
|
}
|
|
}
|
|
} |