1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using UnityEngine;
- using System.Collections;
- using UnityEditor;
- [CustomEditor(typeof(FTME01_ParticleController))]
- public class FTME01_ParticleControllerEditor : Editor {
-
-
-
- private SerializedProperty scaleProperty;
- private SerializedProperty scaleLifeProperty;
-
- void OnEnable(){
- scaleProperty = serializedObject.FindProperty("scale");
- scaleLifeProperty = serializedObject.FindProperty("scaleLife");
- }
-
- public override void OnInspectorGUI()
- {
- //DrawDefaultInspector();
- FTME01_ParticleController myScript = (FTME01_ParticleController)target;
- serializedObject.Update();
-
- var scaleValue = EditorGUILayout.Slider( "Scaling Particle", scaleProperty.floatValue, 0.1f, 10.0f );
-
- if (scaleValue != scaleProperty.floatValue)
- {
- scaleProperty.floatValue = scaleValue;
- }
-
- var scaleLifeValue = EditorGUILayout.Slider( "Scaling Lifetime", scaleLifeProperty.floatValue, 0.1f, 10.0f );
-
- if (scaleLifeValue != scaleLifeProperty.floatValue)
- {
- scaleLifeProperty.floatValue = scaleLifeValue;
- }
- EditorGUILayout.LabelField ("Color Editor");
- EditorGUILayout.LabelField ("------------------------------------------------------------------------------------------------------------------------------");
- EditorGUILayout.PropertyField(serializedObject.FindProperty("particleSystems"),true);
-
- EditorGUILayout.PropertyField(serializedObject.FindProperty("particleColor"),true);
-
- EditorGUILayout.BeginHorizontal();
-
- if(GUILayout.Button("Get Particle Color"))
- {
- myScript.GetColor();
- }
- if(GUILayout.Button("Clear"))
- {
- myScript.ClearColor();
- }
- EditorGUILayout.EndHorizontal();
-
-
-
-
-
- serializedObject.ApplyModifiedProperties();
- }
- }
|