plasdemocam

Post Reply
Fire
Posts: 2
Joined: Fri Jul 03, 2015 10:36 pm

plasdemocam

Post by Fire »

Is there any way to make the camera movements WAY slower? I tried to change these commands to numbers that are way smaller, but it seemed like it didn't make the camera any slower. I want it to craw at a snails pace if I hit any directional key.

bindCommand( keyboard, make, 1, to, "DemoCam::Move(.01);");
bindCommand( keyboard, make, 2, to, "DemoCam::Move(.1);");
bindCommand( keyboard, make, 3, to, "DemoCam::Move(1);");
bindCommand( keyboard, make, 4, to, "DemoCam::Move(3);");
User avatar
Fixious
Posts: 475
Joined: Sat Nov 09, 2013 12:42 am

Re: plasdemocam

Post by Fixious »

Odd you can't make a bind for it. You can do it from the console though.

DemoCam::Move(0.01);
perrinoia
Site Admin
Posts: 3732
Joined: Sun Jul 01, 2012 7:18 pm

Re: plasdemocam

Post by perrinoia »

bindCommand( keyboard, make, 1, to, "DemoCam::Move(.01);");
might need to be bindCommand( keyboard, make, 1, to, "DemoCam::Move(0.01);");
Image
Fire
Posts: 2
Joined: Fri Jul 03, 2015 10:36 pm

Re: plasdemocam

Post by Fire »

Nice, thanks for the help.
Post Reply