C# Class THREE.Scene

Inheritance: Object3D
Mostra file Open project: guidovanhilst/SharpThreejs Class Usage Examples

Public Properties

Property Type Description
autoUpdate bool
fog Fog
overrideMaterial Material

Public Methods

Method Description
Scene ( ) : System

Scenes allow you to set up what and where is to be rendered by three.js. This is where you place objects, lights and cameras.

Method Details

Scene() public method

Scenes allow you to set up what and where is to be rendered by three.js. This is where you place objects, lights and cameras.
public Scene ( ) : System
return System

Property Details

autoUpdate public_oe property

Default is true. If set, then the renderer checks every frame if the scene and its objects needs matrix updates. When it isn't, then you have to maintain all matrices in the scene yourself.
public bool autoUpdate
return bool

fog public_oe property

A fog instance defining the type of fog that affects everything rendered in the scene. Default is null.
public Fog,THREE fog
return Fog

overrideMaterial public_oe property

If not null, it will force everything in the scene to be rendered with that material. Default is null.
public Material,THREE overrideMaterial
return Material