From 6af332afeb87d75b2134aac0d77f9d354e17d8ad Mon Sep 17 00:00:00 2001 From: alteredq Date: Tue, 22 Feb 2011 00:06:12 +0100 Subject: [PATCH] Synced with mrdoob's skinning branch. Also fixed broken canvas cube example. That one was bugging me, I thought it was integration when it was a simple misspelling ;) --- examples/canvas_geometry_cube.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/canvas_geometry_cube.html b/examples/canvas_geometry_cube.html index 7203fedc25..53c9c211d3 100644 --- a/examples/canvas_geometry_cube.html +++ b/examples/canvas_geometry_cube.html @@ -171,7 +171,7 @@ function render() { - plane.rotation.z = cube.rotation.y += ( targetRotation - cube.rotation.y ) * 0.05; + plane.rotation.y = cube.rotation.y += ( targetRotation - cube.rotation.y ) * 0.05; renderer.render(scene, camera); } -- GitLab