Render

Scene.Render method (1 of 5)

Render the scene into external file from given camera’s perspective. The default output size is 1024x768 and output format is png

public void Render(Camera camera, string fileName)
Parameter Type Description
camera Camera From which camera’s perspective to render the scene
fileName String The file name of output file

See Also


Scene.Render method (2 of 5)

Render the scene into external file from given camera’s perspective.

public void Render(Camera camera, string fileName, Size size, ImageFormat format)
Parameter Type Description
camera Camera From which camera’s perspective to render the scene
fileName String The file name of output file
size Size The size of final rendered image
format ImageFormat The image format of the output file

See Also


Scene.Render method (3 of 5)

Render the scene into external file from given camera’s perspective.

public void Render(Camera camera, string fileName, Size size, ImageFormat format, 
    ImageRenderOptions options)
Parameter Type Description
camera Camera From which camera’s perspective to render the scene
fileName String The file name of output file
size Size The size of final rendered image
format ImageFormat The image format of the output file
options ImageRenderOptions The option to customize some internal settings.

See Also


Scene.Render method (4 of 5)

Render the scene into bitmap from given camera’s perspective.

public void Render(Camera camera, Bitmap bitmap)
Parameter Type Description
camera Camera From which camera’s perspective to render the scene
bitmap Bitmap Target of the rendered result

See Also


Scene.Render method (5 of 5)

Render the scene into bitmap from given camera’s perspective.

public void Render(Camera camera, Bitmap bitmap, ImageRenderOptions options)
Parameter Type Description
camera Camera From which camera’s perspective to render the scene
bitmap Bitmap Target of the rendered result
options ImageRenderOptions The option to customize some internal settings.

See Also