Axiom.Samples.SdkTrayManager.ResourceGroupLoadStarted C# (CSharp) Метод

ResourceGroupLoadStarted() публичный Метод

This event is fired when a resource group begins loading.
public ResourceGroupLoadStarted ( string groupName, int resourceCount ) : void
groupName string The name of the group being loaded
resourceCount int /// The number of resources which will be loaded, /// including a number of stages required to load any linked world geometry ///
Результат void
		public void ResourceGroupLoadStarted( string groupName, int resourceCount )
		{
			loadInc = groupLoadProportion / resourceCount;
			LoadBar.Caption = "Loading...";
			mWindow.Update();
			// allow OS events to process (if the platform requires it
			if ( WindowEventMonitor.Instance.MessagePump != null )
			{
				WindowEventMonitor.Instance.MessagePump();
			}
		}