Skip to content

Commit f396baf

Browse files
committed
r62
1 parent ff9aee8 commit f396baf

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

build/three.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @author bhouston / http://exocortex.com
55
*/
66

7-
var THREE = { REVISION: '62dev' };
7+
var THREE = { REVISION: '62' };
88

99
self.console = self.console || {
1010

@@ -11195,8 +11195,9 @@ THREE.JSONLoader.prototype.parse = function ( json, texturePath ) {
1119511195
}
1119611196

1119711197
geometry.bones = json.bones;
11198+
// could change this to json.animations[0] or remove completely
1119811199
geometry.animation = json.animation;
11199-
11200+
geometry.animations = json.animations;
1120011201
};
1120111202

1120211203
function parseMorphing( scale ) {

build/three.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797

9898
<script src="list.js"></script>
9999
<script>
100-
var REVISION = '61';
100+
var REVISION = '62';
101101

102102
var panel = document.getElementById( 'panel' );
103103
var viewer = document.getElementById( 'viewer' );

src/Three.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @author bhouston / http://exocortex.com
55
*/
66

7-
var THREE = { REVISION: '62dev' };
7+
var THREE = { REVISION: '62' };
88

99
self.console = self.console || {
1010

0 commit comments

Comments
 (0)