C# Class StdPaint.Scene

A Scene containing objects to be rendered.
Show file Open project: TheBerkin/StdPaint Class Usage Examples

Public Properties

Property Type Description
ActiveCamera Camera
Objects List

Public Methods

Method Description
Render ( ConsoleBuffer buffer ) : void

Render the current scene to the active buffer.

Scene ( ) : System

Create a new Scene object.

Method Details

Render() public method

Render the current scene to the active buffer.
public Render ( ConsoleBuffer buffer ) : void
buffer ConsoleBuffer
return void

Scene() public method

Create a new Scene object.
public Scene ( ) : System
return System

Property Details

ActiveCamera public property

The Camera currently used to render the scene.
public Camera,StdPaint ActiveCamera
return Camera

Objects public property

The objects in the scene.
public List Objects
return List