Object3D

Scene

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

Constructor

Scene()

Create a new scene object.

Properties

.background : Object

Defines the background of the scene. Default is null. Valid inputs are:

Note: Any camera related configurations like zoom or view are ignored.

.backgroundBlurriness : Float

Sets the blurriness of the background. Only influences environment maps assigned to Scene.background. Valid input is a float between 0 and 1. Default is 0.

.backgroundIntensity : Float

Attenuates the color of the background. Only applies to background textures. Default is 1.

.environment : Texture

Sets the environment map for all physical materials in the scene. However, it's not possible to overwrite an existing texture assigned to MeshStandardMaterial.envMap. Default is null.

.fog : Fog

A fog instance defining the type of fog that affects everything rendered in the scene. Default is null.

.isScene : Boolean

Read-only flag to check if a given object is of type Scene.

.overrideMaterial : Material

Forces everything in the scene to be rendered with the defined material. Default is null.

.worldEnvMapProbe : CubeReflectionProbe

An instance of a reflection light probe that adds environment IBL to all scene objects.

.worldMaterial : Material

The material used to generate world environment.

Methods

.toJSON (meta : Object) : Object

meta — object containing metadata such as textures or images for the scene.
Convert the scene to Verge3D JSON Object/Scene format.

Source

For more info on how to obtain the source code of this module see this page.