Axiom.Core.Root.GetSceneManagerMetaData C# (CSharp) Method

GetSceneManagerMetaData() public method

Gets more information about a given type of SceneManager.
The metadata returned tells you a few things about a given type of SceneManager, which can be created using a factory that has been registered already.
public GetSceneManagerMetaData ( string typeName ) : SceneManagerMetaData
typeName string /// The type name of the SceneManager you want to enquire on. /// If you don't know the typeName already, you can iterate over the /// metadata for all types using getMetaDataIterator. ///
return SceneManagerMetaData
		public SceneManagerMetaData GetSceneManagerMetaData( string typeName )
		{
			return this.sceneManagerEnumerator.GetMetaData( typeName );
		}