Nez.UICanvas.render C# (CSharp) Méthode

render() public méthode

public render ( Graphics graphics, Camera camera ) : void
graphics Graphics
camera Camera
Résultat void
		public override void render( Graphics graphics, Camera camera )
		{
			stage.render( graphics, camera );
		}

Usage Example

Exemple #1
0
 public void render()
 {
     // manually start a fresh batch and call the UICanvas Component lifecycle methods since it isnt attached to the Scene
     Graphics.instance.batcher.begin();
     (ui as IUpdatable).update();
     ui.render(Graphics.instance, _camera);
     Graphics.instance.batcher.end();
 }
All Usage Examples Of Nez.UICanvas::render