mirror of
https://github.com/ENSL/NS.git
synced 2025-02-21 11:21:55 +00:00
o Changed cl_hidebliptext 0 to cl_labelhivesight 1
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@422 67975925-1194-0748-b3d5-c16f83f1a3a1
This commit is contained in:
parent
9bbe11742d
commit
0a516f8fc1
4 changed files with 5 additions and 5 deletions
|
@ -210,7 +210,7 @@ void CHud :: Init( void )
|
||||||
CVAR_CREATE( kvLabelMaps, "1", FCVAR_ARCHIVE);
|
CVAR_CREATE( kvLabelMaps, "1", FCVAR_ARCHIVE);
|
||||||
CVAR_CREATE( kvGammaRamp, "1", FCVAR_ARCHIVE);
|
CVAR_CREATE( kvGammaRamp, "1", FCVAR_ARCHIVE);
|
||||||
CVAR_CREATE( kvCustomCrosshair, "0", FCVAR_ARCHIVE);
|
CVAR_CREATE( kvCustomCrosshair, "0", FCVAR_ARCHIVE);
|
||||||
CVAR_CREATE( kvHideBlipText, "0", FCVAR_ARCHIVE);
|
CVAR_CREATE( kvLabelHivesight, "1", FCVAR_ARCHIVE);
|
||||||
CVAR_CREATE( "cl_iconr", "0", FCVAR_ARCHIVE);
|
CVAR_CREATE( "cl_iconr", "0", FCVAR_ARCHIVE);
|
||||||
CVAR_CREATE( "cl_icong", "149", FCVAR_ARCHIVE);
|
CVAR_CREATE( "cl_icong", "149", FCVAR_ARCHIVE);
|
||||||
CVAR_CREATE( "cl_iconb", "221", FCVAR_ARCHIVE);
|
CVAR_CREATE( "cl_iconb", "221", FCVAR_ARCHIVE);
|
||||||
|
|
|
@ -40,7 +40,7 @@ extern cvar_t* cl_musicdir;
|
||||||
// :puzl
|
// :puzl
|
||||||
// tankefugl: 0001070 - enables forced gamma ramp loading
|
// tankefugl: 0001070 - enables forced gamma ramp loading
|
||||||
#define kvGammaRamp "cl_gammaramp"
|
#define kvGammaRamp "cl_gammaramp"
|
||||||
#define kvHideBlipText "cl_hidebliptext"
|
#define kvLabelHivesight "cl_labelhivesight"
|
||||||
#define kvCustomCrosshair "cl_customcrosshair"
|
#define kvCustomCrosshair "cl_customcrosshair"
|
||||||
// :tankefugl
|
// :tankefugl
|
||||||
#define kvCMHotKeys "cl_cmhotkeys"
|
#define kvCMHotKeys "cl_cmhotkeys"
|
||||||
|
|
|
@ -4014,7 +4014,7 @@ void AvHHud::RenderAlienUI()
|
||||||
|
|
||||||
if(AvHCUWorldToScreen(theMessageWorldPos, (float*)&theScreenPos))
|
if(AvHCUWorldToScreen(theMessageWorldPos, (float*)&theScreenPos))
|
||||||
{
|
{
|
||||||
if((theBlipName != "") && (theBlipStatusText != "") && (theLocationName != "") && (CVAR_GET_FLOAT(kvHideBlipText) == 0))
|
if((theBlipName != "") && (theBlipStatusText != "") && (theLocationName != "") && (CVAR_GET_FLOAT(kvLabelHivesight) == 0))
|
||||||
{
|
{
|
||||||
// Find alpha for the blip-text based on position on the screen
|
// Find alpha for the blip-text based on position on the screen
|
||||||
float screenWidth = ScreenWidth();
|
float screenWidth = ScreenWidth();
|
||||||
|
|
|
@ -97,11 +97,11 @@ DESCRIPTION INFO_OPTIONS
|
||||||
{ "1" }
|
{ "1" }
|
||||||
}
|
}
|
||||||
|
|
||||||
"cl_hidebliptext"
|
"cl_labelhivesight"
|
||||||
{
|
{
|
||||||
"Show alien hivesight text"
|
"Show alien hivesight text"
|
||||||
{ BOOL }
|
{ BOOL }
|
||||||
{ "0" }
|
{ "1" }
|
||||||
}
|
}
|
||||||
|
|
||||||
"cl_dynamiclights"
|
"cl_dynamiclights"
|
||||||
|
|
Loading…
Reference in a new issue