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

HasStaticGeometry() public method

Returns whether a static geometry instance with the given name exists. */
public HasStaticGeometry ( string name ) : bool
name string
return bool
		public bool HasStaticGeometry( string name )
		{
			return this.staticGeometryList.ContainsKey( name );
		}
SceneManager