Axiom.Samples.SdkTrayManager.ScriptParseStarted C# (CSharp) Method

ScriptParseStarted() public method

This event is fired when a script is about to be parsed.
public ScriptParseStarted ( string scriptName, bool &skipThisScript ) : void
scriptName string Name of the to be parsed
skipThisScript bool
return void
		public void ScriptParseStarted( string scriptName, ref bool skipThisScript )
		{
			LoadBar.Comment = System.IO.Path.GetFileName( scriptName );
			mWindow.Update();
			// allow OS events to process (if the platform requires it
			if ( WindowEventMonitor.Instance.MessagePump != null )
			{
				WindowEventMonitor.Instance.MessagePump();
			}
		}