RenderScene() private méthode

Called to ask a camera to render the scene into the given viewport.
private RenderScene ( Axiom.Core.Viewport viewport, bool showOverlays ) : void
viewport Axiom.Core.Viewport
showOverlays bool
Résultat void
Exemple #1
0
 public void Update()
 {
     if (Camera != null)
     {
         Camera.RenderScene(this, ShowOverlays);
     }
 }
 /// <summary>
 ///		Instructs the viewport to updates its contents from the viewpoint of
 ///		the current camera.
 /// </summary>
 public void Update()
 {
     if (camera != null)
     {
         camera.RenderScene(this, showOverlays);
     }
 }