Axiom.Core.SceneManager.GetMovableText C# (CSharp) Méthode

GetMovableText() public méthode

Retrieves the named MovableText.
/// Thrown if the names does not exists in the collection. ///
public GetMovableText ( string name ) : MovableText
name string /// The name of the object to retrieve. ///
Résultat MovableText
		public MovableText GetMovableText( string name )
		{
			return (MovableText)this.GetMovableObject( name, MovableTextFactory.TypeName );
		}
SceneManager