58 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			58 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
|  | using UnityEngine; | ||
|  | using System.Collections; | ||
|  | using UnityEditor; | ||
|  | using HedgehogTeam.EasyTouch; | ||
|  | #if UNITY_5_3 | ||
|  | using UnityEditor.SceneManagement; | ||
|  | #endif | ||
|  | 
 | ||
|  | [CustomEditor(typeof(QuickTwist))] | ||
|  | public class QuickTwistInspector : Editor { | ||
|  | 
 | ||
|  | 	public override void OnInspectorGUI(){ | ||
|  | 		 | ||
|  | 		QuickTwist t = (QuickTwist)target; | ||
|  | 
 | ||
|  | 		EditorGUILayout.Space(); | ||
|  | 		 | ||
|  | 		t.quickActionName = EditorGUILayout.TextField("Quick name",t.quickActionName); | ||
|  | 		 | ||
|  | 		EditorGUILayout.Space(); | ||
|  | 
 | ||
|  | 		t.isGestureOnMe = EditorGUILayout.ToggleLeft("Gesture over me", t.isGestureOnMe); | ||
|  | 		t.enablePickOverUI = EditorGUILayout.ToggleLeft("Allow over UI Element",t.enablePickOverUI); | ||
|  | 
 | ||
|  | 		EditorGUILayout.Space(); | ||
|  | 
 | ||
|  | 		t.actionTriggering = (QuickTwist.ActionTiggering)EditorGUILayout.EnumPopup("Triggering",t.actionTriggering); | ||
|  | 		t.rotationDirection = (QuickTwist.ActionRotationDirection)EditorGUILayout.EnumPopup("Twist direction",t.rotationDirection); | ||
|  | 
 | ||
|  | 		EditorGUILayout.Space(); | ||
|  | 		if (t.actionTriggering == QuickTwist.ActionTiggering.InProgress){ | ||
|  | 			t.enableSimpleAction = EditorGUILayout.Toggle("Enable simple action",t.enableSimpleAction); | ||
|  | 			if (t.enableSimpleAction){ | ||
|  | 				EditorGUI.indentLevel++; | ||
|  | 				t.directAction = (QuickSwipe.DirectAction) EditorGUILayout.EnumPopup("Action",t.directAction); | ||
|  | 				t.axesAction = (QuickSwipe.AffectedAxesAction)EditorGUILayout.EnumPopup("Affected axes",t.axesAction); | ||
|  | 				t.sensibility = EditorGUILayout.FloatField("Sensibility",t.sensibility); | ||
|  | 				t.inverseAxisValue = EditorGUILayout.Toggle("Inverse axis",t.inverseAxisValue); | ||
|  | 				EditorGUI.indentLevel--; | ||
|  | 			} | ||
|  | 		} | ||
|  | 		 | ||
|  | 		EditorGUILayout.Space(); | ||
|  | 
 | ||
|  | 		serializedObject.Update(); | ||
|  | 		SerializedProperty twistAction = serializedObject.FindProperty("onTwistAction"); | ||
|  | 		EditorGUILayout.PropertyField(twistAction, true, null); | ||
|  | 		serializedObject.ApplyModifiedProperties(); | ||
|  | 
 | ||
|  | 		if (GUI.changed){ | ||
|  | 			EditorUtility.SetDirty(t); | ||
|  | 			#if UNITY_5_3 | ||
|  | 			EditorSceneManager.MarkSceneDirty( EditorSceneManager.GetActiveScene()); | ||
|  | 			#endif | ||
|  | 		} | ||
|  | 	} | ||
|  | } |