Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Nicholas Wech
three.js-lite
Commits
d55897b8
Commit
d55897b8
authored
7 years ago
by
Mr.doob
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
r90
parent
ad926ccc
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
394 additions
and
392 deletions
+394
-392
.github/ISSUE_TEMPLATE.md
.github/ISSUE_TEMPLATE.md
+1
-1
build/three.js
build/three.js
+2
-1
build/three.min.js
build/three.min.js
+387
-387
build/three.module.js
build/three.module.js
+2
-1
package.json
package.json
+1
-1
src/constants.js
src/constants.js
+1
-1
No files found.
.github/ISSUE_TEMPLATE.md
View file @
d55897b8
...
...
@@ -19,7 +19,7 @@ Please also include a live example if possible. You can start from these templat
##### Three.js version
-
[ ] Dev
-
[ ] r
8
9
-
[ ] r9
0
-
[ ] ...
##### Browser
...
...
This diff is collapsed.
Click to expand it.
build/three.js
View file @
d55897b8
...
...
@@ -185,7 +185,7 @@
} );
var REVISION = '90
dev
';
var REVISION = '90';
var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2 };
var CullFaceNone = 0;
var CullFaceBack = 1;
...
...
@@ -21845,6 +21845,7 @@
this.compile = function ( scene, camera ) {
currentRenderState = renderStates.get( scene, camera );
currentRenderState.init();
scene.traverse( function ( object ) {
This diff is collapsed.
Click to expand it.
build/three.min.js
View file @
d55897b8
This diff is collapsed.
Click to expand it.
build/three.module.js
View file @
d55897b8
...
...
@@ -179,7 +179,7 @@ Object.assign( EventDispatcher.prototype, {
} );
var REVISION = '90
dev
';
var REVISION = '90';
var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2 };
var CullFaceNone = 0;
var CullFaceBack = 1;
...
...
@@ -21839,6 +21839,7 @@ function WebGLRenderer( parameters ) {
this.compile = function ( scene, camera ) {
currentRenderState = renderStates.get( scene, camera );
currentRenderState.init();
scene.traverse( function ( object ) {
...
...
This diff is collapsed.
Click to expand it.
package.json
View file @
d55897b8
{
"name"
:
"three"
,
"version"
:
"0.
8
9.0"
,
"version"
:
"0.9
0
.0"
,
"description"
:
"JavaScript 3D library"
,
"main"
:
"build/three.js"
,
"repository"
:
"mrdoob/three.js"
,
...
...
This diff is collapsed.
Click to expand it.
src/constants.js
View file @
d55897b8
export
var
REVISION
=
'
90
dev
'
;
export
var
REVISION
=
'
90
'
;
export
var
MOUSE
=
{
LEFT
:
0
,
MIDDLE
:
1
,
RIGHT
:
2
};
export
var
CullFaceNone
=
0
;
export
var
CullFaceBack
=
1
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment