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

ShowLoadingBar() public method

Shows loading bar. Also takes job settings: the number of resource groups to be initialised, the number of resource groups to be loaded, and the proportion of the job that will be taken up by initialization. Usually, script parsing takes up most time, so the default value is 0.7.
public ShowLoadingBar ( ) : void
return void
		public void ShowLoadingBar()
		{
			this.ShowLoadingBar( 1, 1, 0.7f );
		}

Same methods

SdkTrayManager::ShowLoadingBar ( int numGroupsInit, int numGroupsLoad ) : void
SdkTrayManager::ShowLoadingBar ( int numGroupsInit, int numGroupsLoad, Real initProportion ) : void