Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way to move an object forward in Three.js?

Maybe I should convert the rotation.x,y,z to a vector, and deal with it. But I'm beginner, and I don't have any idea how to do it.

share|improve this question

2 Answers

up vote 5 down vote accepted

Object3D has some handy methods for that.

object.translateZ( 10 );
share|improve this answer
Thanks. And how to move the camera? – eqiproo Jun 22 '12 at 16:13
6  
thank you for your project. its awesome! – www.eugenehp.tk Jun 22 '12 at 18:28
1  
@eqiproo camera.translateZ( 10 ); – mrdoob Jun 23 '12 at 2:58
@www.eugenehp.tk my pleasure :) – mrdoob Jun 23 '12 at 2:58
@mrdoob Is it possible to make documentaion for threejs more elaborate? – Sheldon Cooper Apr 13 at 19:04

Here is a nice tutorial http://www.aerotwist.com/tutorials/getting-started-with-three-js/

// set position of YOUR_OBJECT
YOUR_OBJECT.position.x = 10;
YOUR_OBJECT.position.y = 50;
YOUR_OBJECT.position.z = 130;

Okay, guys, more detailed!

var STEP = 10;
var newCubeMatrix = cube.matrix;        
newCubeMatrix.identity();
//newCubeMatrix.multiplySelf(THREE.Matrix4.rotationYMatrix(cube.rotation.y));
newCubeMatrix.multiplySelf(THREE.Matrix4.translationMatrix(cube.position.x, cube.position.y, cube.position.z + STEP));
cube.updateMatrix();

details posted here http://gamedev.stackexchange.com/questions/7490/translate-object-in-world-space-usings-its-local-rotation

share|improve this answer
Sorry, but I still do not know how to do it :S – eqiproo Jun 20 '12 at 20:40
Do you have some snippet to start with? did you try any tutorial yet? Did you check the link? Tell me your concerns? – www.eugenehp.tk Jun 20 '12 at 20:43
I have a red cube in my scene, which is rotated around the x,y and z axist. I would like to use the current direction of the object and move it forward using a specified step value. – eqiproo Jun 20 '12 at 20:54
updated, looks more clear? – www.eugenehp.tk Jun 20 '12 at 21:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.