示例#1
0
文件: cl_input.c 项目: otty/cake3
void IN_MLookUp(void)
{
	in_mlooking = qfalse;
	if(!cl_freelook->integer)
	{
		IN_CenterView();
	}
}
示例#2
0
文件: in_win.c 项目: Izhido/qrevpak
void IN_MLookUp (void) {
mlooking = false;
if (!freelook->value && lookspring->value)
		IN_CenterView ();
}
示例#3
0
文件: input.c 项目: DrItanium/yquake2
/*
 * Look up
 */
static void
IN_MLookUp(void)
{
	mlooking = false;
	IN_CenterView();
}
示例#4
0
void IN_MLookUp( void ) {
	kb[KB_MLOOK].active = qfalse;
	if ( !cl_freelook->integer ) {
		IN_CenterView();
	}
}
示例#5
0
文件: cl_input.c 项目: Bad-ptr/q2pro
static void IN_MLookUp( void ) {
    in_mlooking = qfalse;

    if( !freelook->integer && lookspring->integer )
        IN_CenterView();
}
示例#6
0
void IN_MLookUp( int localPlayerNum ) {
	cis[localPlayerNum].in_mlooking = qfalse;
	if ( !cg_freelook.integer ) {
		IN_CenterView ( localPlayerNum );
	}
}