You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			28 lines
		
	
	
		
			776 B
		
	
	
	
		
			C#
		
	
			
		
		
	
	
			28 lines
		
	
	
		
			776 B
		
	
	
	
		
			C#
		
	
using UnityEngine;
 | 
						|
using UnityEditor;
 | 
						|
using System.Collections;
 | 
						|
 | 
						|
namespace RootMotion.FinalIK {
 | 
						|
 | 
						|
	// Custom inspector for IKExecutionOrder
 | 
						|
	[CustomEditor(typeof(IKExecutionOrder))]
 | 
						|
	public class IKExecutionOrderInspector : Editor {
 | 
						|
 | 
						|
		private IKExecutionOrder script { get { return target as IKExecutionOrder; }}
 | 
						|
 | 
						|
		private MonoScript monoScript;
 | 
						|
 | 
						|
		void OnEnable() {
 | 
						|
			if (serializedObject == null) return;
 | 
						|
			
 | 
						|
			// Changing the script execution order
 | 
						|
			if (!Application.isPlaying) {
 | 
						|
				int executionOrder = 9996;
 | 
						|
				monoScript = MonoScript.FromMonoBehaviour(script);
 | 
						|
				int currentExecutionOrder = MonoImporter.GetExecutionOrder(monoScript);
 | 
						|
				if (currentExecutionOrder != executionOrder) MonoImporter.SetExecutionOrder(monoScript, executionOrder);
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |