mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-07-07 07:13:58 +00:00
XCharts 2.0
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
|
||||
/******************************************/
|
||||
/* */
|
||||
/* Copyright (c) 2018 monitor1394 */
|
||||
/* https://github.com/monitor1394 */
|
||||
/* */
|
||||
/******************************************/
|
||||
/************************************************/
|
||||
/* */
|
||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
||||
/* https://github.com/monitor1394 */
|
||||
/* */
|
||||
/************************************************/
|
||||
|
||||
using UnityEditor;
|
||||
|
||||
@@ -19,6 +19,10 @@ namespace XChartsDemo
|
||||
{
|
||||
protected Demo m_Target;
|
||||
protected SerializedProperty m_Script;
|
||||
protected SerializedProperty m_LeftWidth;
|
||||
protected SerializedProperty m_LeftButtonHeight;
|
||||
protected SerializedProperty m_ChartSpacing;
|
||||
protected SerializedProperty m_ChartSizeRatio;
|
||||
protected SerializedProperty m_ButtonNormalColor;
|
||||
protected SerializedProperty m_ButtonSelectedColor;
|
||||
protected SerializedProperty m_ButtonHighlightColor;
|
||||
@@ -27,6 +31,10 @@ namespace XChartsDemo
|
||||
{
|
||||
m_Target = (Demo)target;
|
||||
m_Script = serializedObject.FindProperty("m_Script");
|
||||
m_LeftWidth = serializedObject.FindProperty("m_LeftWidth");
|
||||
m_ChartSpacing = serializedObject.FindProperty("m_ChartSpacing");
|
||||
m_ChartSizeRatio = serializedObject.FindProperty("m_ChartSizeRatio");
|
||||
m_LeftButtonHeight = serializedObject.FindProperty("m_LeftButtonHeight");
|
||||
m_ButtonNormalColor = serializedObject.FindProperty("m_ButtonNormalColor");
|
||||
m_ButtonSelectedColor = serializedObject.FindProperty("m_ButtonSelectedColor");
|
||||
m_ButtonHighlightColor = serializedObject.FindProperty("m_ButtonHighlightColor");
|
||||
@@ -42,6 +50,10 @@ namespace XChartsDemo
|
||||
return;
|
||||
}
|
||||
serializedObject.Update();
|
||||
EditorGUILayout.PropertyField(m_LeftWidth);
|
||||
EditorGUILayout.PropertyField(m_LeftButtonHeight);
|
||||
EditorGUILayout.PropertyField(m_ChartSpacing);
|
||||
EditorGUILayout.PropertyField(m_ChartSizeRatio);
|
||||
EditorGUILayout.PropertyField(m_ButtonNormalColor);
|
||||
EditorGUILayout.PropertyField(m_ButtonSelectedColor);
|
||||
EditorGUILayout.PropertyField(m_ButtonHighlightColor);
|
||||
|
||||
Reference in New Issue
Block a user