Axiom.Samples.SdkTrayManager.ShowLoadingBar C# (CSharp) 메소드

ShowLoadingBar() 공개 메소드

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
리턴 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