centerprints with links now show cursors.
q2 temp entity tweaks. still more work to be done. support sRGB (mostly)properly in gl+vk+d3d9+d3d11. vulkan tweaks - multisample works under certain conditions. additional other changes to comply... cvars to enable some other device extensions. removed r_viewleaf. now using clusters for q1 too. improved compat with quakespasm's sky command. Added vid_winthread cvar, to handle window messages on a separate thread. When set this allows the game to keep redrawing when the user is resizing the window etc. Finally added renderers option to menusys. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5130 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
d66db9930d
commit
db2c378fa0
67 changed files with 6083 additions and 2281 deletions
|
@ -75,19 +75,19 @@ cvar_t pm_walljump = CVARF("pm_walljump", "", CVAR_SERVERINFO);
|
|||
#define cvargroup_serverphysics "server physics variables"
|
||||
void WPhys_Init(void)
|
||||
{
|
||||
Cvar_Register (&sv_maxvelocity, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_gravity, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_stopspeed, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_maxspeed, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_spectatormaxspeed, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_accelerate, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_airaccelerate, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_wateraccelerate, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_friction, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_waterfriction, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_sound_watersplash, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_sound_land, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_stepheight, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_maxvelocity, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_gravity, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_stopspeed, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_maxspeed, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_spectatormaxspeed, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_accelerate, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_airaccelerate, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_wateraccelerate, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_friction, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_waterfriction, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_sound_watersplash, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_sound_land, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_stepheight, cvargroup_serverphysics);
|
||||
|
||||
Cvar_Register (&sv_gameplayfix_noairborncorpse, cvargroup_serverphysics);
|
||||
Cvar_Register (&sv_gameplayfix_multiplethinks, cvargroup_serverphysics);
|
||||
|
@ -1365,7 +1365,7 @@ static void WPhys_Physics_Toss (world_t *w, wedict_t *ent)
|
|||
#pragma warningmsg("The following line might help boost framerates a lot in rmq, not sure if they violate expected behaviour in other mods though - check that they're safe.")
|
||||
VectorNegate(gravitydir, trace.plane.normal);
|
||||
}
|
||||
if (trace.fraction == 1)
|
||||
if (trace.fraction == 1 || !trace.ent)
|
||||
return;
|
||||
if (ED_ISFREE(ent))
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue