i'm trying this:

controls = new THREE.FirstPersonControls(camera);

controls.movementSpeed = 1000; controls.lookSpeed = 0.125; controls.lookVertical = true;

it didn't work, From here i found out that i need to update the control with time delta:

var clock = new THREE.Clock();

controls.update( clock.getDelta() );

but I get undefined is not a function error for THREE.Clock()

can you please point me to working demo/tutorial with FirstPersonControls, or just tell me whats wrong?

Thanks!!

link|improve this question

hello, Sergej, have you found any tutorial on webgl? – Sergey Feb 15 at 7:13
feedback

1 Answer

up vote 4 down vote accepted

Have you tried simply calling controls.update(); (withough passing a delta) ?

I've just tried using the class by copying a bit of code from the misc_sound.html example. So in init():

controls = new THREE.FirstPersonControls( camera );

                controls.movementSpeed = 70;
                controls.lookSpeed = 0.05;
                controls.noFly = true;
                controls.lookVertical = false;

and in render():

controls.update();

Have you checked if there are any errors in console ?

link|improve this answer
Hey that worked! thanks! got confused by post on similar problem. – Sergej Popov Nov 9 '11 at 13:40
feedback

Your Answer

 
or
required, but never shown

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