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

WorldGeometryStageStarted() public method

This event is fired when a stage of loading linked world geometry is about to start. The number of stages required will have been included in the resourceCount passed in resourceGroupLoadStarted.
public WorldGeometryStageStarted ( string description ) : void
description string Text description of what was just loaded
return void
		public void WorldGeometryStageStarted( string description )
		{
			LoadBar.Comment = description;
			mWindow.Update();
			// allow OS events to process (if the platform requires it
			if ( WindowEventMonitor.Instance.MessagePump != null )
			{
				WindowEventMonitor.Instance.MessagePump();
			}
		}