Commit d55897b8 authored by Mr.doob's avatar Mr.doob

r90

parent ad926ccc
...@@ -19,7 +19,7 @@ Please also include a live example if possible. You can start from these templat ...@@ -19,7 +19,7 @@ Please also include a live example if possible. You can start from these templat
##### Three.js version ##### Three.js version
- [ ] Dev - [ ] Dev
- [ ] r89 - [ ] r90
- [ ] ... - [ ] ...
##### Browser ##### Browser
......
...@@ -185,7 +185,7 @@ ...@@ -185,7 +185,7 @@
} ); } );
var REVISION = '90dev'; var REVISION = '90';
var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2 }; var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2 };
var CullFaceNone = 0; var CullFaceNone = 0;
var CullFaceBack = 1; var CullFaceBack = 1;
...@@ -21845,6 +21845,7 @@ ...@@ -21845,6 +21845,7 @@
this.compile = function ( scene, camera ) { this.compile = function ( scene, camera ) {
currentRenderState = renderStates.get( scene, camera );
currentRenderState.init(); currentRenderState.init();
scene.traverse( function ( object ) { scene.traverse( function ( object ) {
This diff is collapsed.
...@@ -179,7 +179,7 @@ Object.assign( EventDispatcher.prototype, { ...@@ -179,7 +179,7 @@ Object.assign( EventDispatcher.prototype, {
} ); } );
var REVISION = '90dev'; var REVISION = '90';
var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2 }; var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2 };
var CullFaceNone = 0; var CullFaceNone = 0;
var CullFaceBack = 1; var CullFaceBack = 1;
...@@ -21839,6 +21839,7 @@ function WebGLRenderer( parameters ) { ...@@ -21839,6 +21839,7 @@ function WebGLRenderer( parameters ) {
this.compile = function ( scene, camera ) { this.compile = function ( scene, camera ) {
currentRenderState = renderStates.get( scene, camera );
currentRenderState.init(); currentRenderState.init();
scene.traverse( function ( object ) { scene.traverse( function ( object ) {
......
{ {
"name": "three", "name": "three",
"version": "0.89.0", "version": "0.90.0",
"description": "JavaScript 3D library", "description": "JavaScript 3D library",
"main": "build/three.js", "main": "build/three.js",
"repository": "mrdoob/three.js", "repository": "mrdoob/three.js",
......
export var REVISION = '90dev'; export var REVISION = '90';
export var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2 }; export var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2 };
export var CullFaceNone = 0; export var CullFaceNone = 0;
export var CullFaceBack = 1; export var CullFaceBack = 1;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment