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.
		
		
		
		
		
			
		
			
				
	
	
		
			23 lines
		
	
	
		
			645 B
		
	
	
	
		
			C#
		
	
			
		
		
	
	
			23 lines
		
	
	
		
			645 B
		
	
	
	
		
			C#
		
	
using UnityEngine;
 | 
						|
using System.Collections;
 | 
						|
using UnityEditor;
 | 
						|
 | 
						|
namespace RootMotion {
 | 
						|
 | 
						|
	// Just making sure the camera controller updates last
 | 
						|
	[CustomEditor(typeof(CameraController))]
 | 
						|
	public class CameraControllerInspector : Editor {
 | 
						|
 | 
						|
		private CameraController script { get { return target as CameraController; }}
 | 
						|
		private MonoScript monoScript;
 | 
						|
 | 
						|
		void OnEnable() {
 | 
						|
			if (!Application.isPlaying) {
 | 
						|
				monoScript = MonoScript.FromMonoBehaviour(script);
 | 
						|
				int currentExecutionOrder = MonoImporter.GetExecutionOrder(monoScript);
 | 
						|
				if (currentExecutionOrder != 10200) MonoImporter.SetExecutionOrder(monoScript, 10200);
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |