//----------------------------------------------------------------------------------------- // // config file for FLARE light compiler // this file always gets automatically executed after the command line has finished parsing // //----------------------------------------------------------------------------------------- //--------------------------------------------- // command keys bind escape "quit" //--------------------------------------------- // movement set movespeed 512 set sensitivity 5 set m_pitch 0.022 set m_yaw 0.022 bind s "+moveleft" bind f "+moveright" bind d "+back" bind e "+forward" bind mouse2 "+forward" bind space "+moveup" bind shift "+movedown" //--------------------------------------------- // leak points and bsp testing bind [ "inc leakpoint" bind ] "dec leakpoint" bind \ "set leakpoint 0" bind l "toggle r_showleaf" bind semicolon "toggle r_lockleaf" // bspleaf is the one in the bsp from q3map bind b "toggle r_showbspleaf" //--------------------------------------------- // debug stepping commands bind f10 step bind f11 stepin bind f5 stepout bind f8 resetbreakpoints bind f9 togglebreakpoint //--------------------------------------------- // rendering bind w "toggle r_wireframe" bind r "toggle r_fullbright" bind t "toggle r_textured" bind o "overbright" bind p "lmapfilter" bind i "toggle r_showoccluders" bind j "jumptolight" bind k "toggle r_showlights" bind g "toggle r_showgrid" bind . "toggle r_picklight" bind y "toggle r_showbreakpoints" bind n "toggle r_shownormals" //--------------------------------------------- // zoom bind 1 "set r_fov 90" bind 2 "set r_fov 75" bind 3 "set r_fov 60" bind 4 "set r_fov 45" bind 5 "set r_fov 30" bind 6 "set r_fov 20" bind 7 "set r_fov 15" bind 8 "set r_fov 10" //--------------------------------------------- // convenient speed toggle bind mwheelup "add 64 movespeed" bind mwheeldown "add -64 movespeed"