mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-10 15:21:43 +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( kvGammaRamp, "1", 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_icong", "149", FCVAR_ARCHIVE);
|
||||
CVAR_CREATE( "cl_iconb", "221", FCVAR_ARCHIVE);
|
||||
|
|
|
@ -40,7 +40,7 @@ extern cvar_t* cl_musicdir;
|
|||
// :puzl
|
||||
// tankefugl: 0001070 - enables forced gamma ramp loading
|
||||
#define kvGammaRamp "cl_gammaramp"
|
||||
#define kvHideBlipText "cl_hidebliptext"
|
||||
#define kvLabelHivesight "cl_labelhivesight"
|
||||
#define kvCustomCrosshair "cl_customcrosshair"
|
||||
// :tankefugl
|
||||
#define kvCMHotKeys "cl_cmhotkeys"
|
||||
|
|
|
@ -4014,7 +4014,7 @@ void AvHHud::RenderAlienUI()
|
|||
|
||||
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
|
||||
float screenWidth = ScreenWidth();
|
||||
|
|
|
@ -97,11 +97,11 @@ DESCRIPTION INFO_OPTIONS
|
|||
{ "1" }
|
||||
}
|
||||
|
||||
"cl_hidebliptext"
|
||||
"cl_labelhivesight"
|
||||
{
|
||||
"Show alien hivesight text"
|
||||
{ BOOL }
|
||||
{ "0" }
|
||||
{ "1" }
|
||||
}
|
||||
|
||||
"cl_dynamiclights"
|
||||
|
|
Loading…
Reference in a new issue