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.
Create a new scene object.
A [page:Fog fog] instance defining the type of fog that affects everything rendered in the scene. Default is null.
If not null, it will force everything in the scene to be rendered with that material. Default is null.
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.
If not null, sets the background used when rendering the scene, and is always rendered first. Can be set to a [page:Color] which sets the clear color, a [page:Texture] covering the canvas, or a cubemap as a [page:CubeTexture] or [page:WebGLRenderTargetCube]. Default is null.
meta -- object containing metadata such as textures or images for the scene.
Convert the scene to three.js [link:https://github.com/mrdoob/three.js/wiki/JSON-Object-Scene-format-4 JSON Object/Scene format].
Clears scene related data internally cached by [page:WebGLRenderer].
[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]