Skip to content

Commit ddef07a

Browse files
committed
r53
1 parent 9c42d0f commit ddef07a

File tree

5 files changed

+26
-4
lines changed

5 files changed

+26
-4
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,28 @@ This code creates a scene, then creates a camera, adds the camera and cube to th
6565

6666
### Change log ###
6767

68+
2012 11 15 - **r53** (392,799 KB, gzip: 96,044 KB)
69+
70+
* Lots of improvements to [editor](http://mrdoob.github.com/three.js/editor/). Including possibility to export geometry and scene. ([alteredq](http://github.com/alteredq) and [mrdoob](http://github.com/mrdoob))
71+
* `Sprite` no longer gets its size from the texture. ([alteredq](http://github.com/alteredq) and [mrdoob](http://github.com/mrdoob))
72+
* Improved `CSS3DRenderer`. ([mrdoob](http://github.com/mrdoob) and [alteredq](http://github.com/alteredq))
73+
* Added support for vertex normals in `Ribbon`. ([alteredq](http://github.com/alteredq))
74+
* `Object3D`'s `.clone()` is now recursive. ([mrdoob](http://github.com/mrdoob))
75+
* Added support for fog in `Sprite`. ([alteredq](http://github.com/alteredq))
76+
* Scene format now supports nested lights, cameras and SkinnedMesh, OBJ, VTK, STL, UTF8 and Collada files. ([alteredq](http://github.com/alteredq))
77+
* `Object3D`'s `.lookAt()` now working when using quaternions. ([motin](http://github.com/motin))
78+
* Added touch support to `TrackballControls`. ([mrdoob](http://github.com/mrdoob))
79+
* Object sorting in `WebGLRenderer` is now stable, regardless of browser implementation. ([alteredq](http://github.com/alteredq))
80+
* `MeshPhongMaterial`'s `perPixel` is not `true` by default. ([alteredq](http://github.com/alteredq))
81+
* Added `LineDashedMaterial`. ([alteredq](http://github.com/alteredq))
82+
* Added `.setContextStyle` to `Color`. ([greyscales](http://github.com/greyscales))
83+
* Corrected normal matrix calculations. ([WestLangley](http://github.com/WestLangley))
84+
* Added area weighted vertex normals computation to `Geometry`. ([alteredq](http://github.com/alteredq))
85+
* Moved geometry.materials to `MeshFaceMaterial`. ([gero3](http://github.com/gero3), [alteredq](http://github.com/alteredq) and [mrdoob](http://github.com/mrdoob))
86+
* Removed `materials` and `sides` from `CubeGeometry`. ([mrdoob](http://github.com/mrdoob))
87+
* Move `GeometryUtils`'s `.clone()` to `Geometry`. ([mrdoob](http://github.com/mrdoob))
88+
89+
6890
2012 10 15 - **r52** (379,442 KB, gzip: 94,126 KB)
6991

7092
* New node.js build system. ([gero3](http://github.com/gero3))

build/three.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @author Larry Battle / http://bateru.com/news
44
*/
55

6-
var THREE = THREE || { REVISION: '53dev' };
6+
var THREE = THREE || { REVISION: '53' };
77

88
self.console = self.console || {
99

build/three.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797

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

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

src/Three.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @author Larry Battle / http://bateru.com/news
44
*/
55

6-
var THREE = THREE || { REVISION: '53dev' };
6+
var THREE = THREE || { REVISION: '53' };
77

88
self.console = self.console || {
99

0 commit comments

Comments
 (0)