Axiom.Core.SceneManager.EstimateWorldGeometry C# (CSharp) Method

EstimateWorldGeometry() public method

Estimate the number of loading stages required to load the named world geometry.
Operates just like the version of this method which takes a filename, but operates on a stream instead. Note that since the stream is updated, you'll need to reset the stream or reopen it when it comes to loading it for real.
public EstimateWorldGeometry ( Stream stream ) : int
stream Stream Data stream containing data to load
return int
		public int EstimateWorldGeometry( Stream stream )
		{
			return this.EstimateWorldGeometry( stream, string.Empty );
		}

Same methods

SceneManager::EstimateWorldGeometry ( Stream stream, string typeName ) : int
SceneManager::EstimateWorldGeometry ( string fileName ) : int
SceneManager