Axiom.Fonts.Font.unload C# (CSharp) Метод

unload() защищенный Метод

protected unload ( ) : void
Результат void
		protected override void unload()
		{
			if ( _material != null )
			{
				MaterialManager.Instance.Remove( _material );
				_material.Unload();
				_material = null;
			}

			if ( _texture != null )
			{
				TextureManager.Instance.Remove( _texture );
				_texture.Unload();
				_texture = null;
			}
		}