HomeSort by relevance Sort by last modified time
    Searched defs:sv_maxvelocity (Results 1 - 2 of 2) sorted by null

  /external/quake/quake/src/QW/server/
sv_phys.c 42 cvar_t sv_maxvelocity = {"sv_maxvelocity","2000"}; variable
109 if (ent->v.velocity[i] > sv_maxvelocity.value)
110 ent->v.velocity[i] = sv_maxvelocity.value;
111 else if (ent->v.velocity[i] < -sv_maxvelocity.value)
112 ent->v.velocity[i] = -sv_maxvelocity.value;
  /external/quake/quake/src/WinQuake/
sv_phys.cpp 45 cvar_t sv_maxvelocity = CVAR2("sv_maxvelocity","2000"); variable
109 if (ent->u.v.velocity[i] > sv_maxvelocity.value)
110 ent->u.v.velocity[i] = sv_maxvelocity.value;
111 else if (ent->u.v.velocity[i] < -sv_maxvelocity.value)
112 ent->u.v.velocity[i] = -sv_maxvelocity.value;
    [all...]

Completed in 2269 milliseconds