mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Fixed variable incosistency, string added for new module option
This commit is contained in:
parent
8a2a53ddac
commit
446ad378ca
@ -44,12 +44,12 @@ class ACE_Settings {
|
||||
description = "$STR_ACE_NameTags_ShowSoundWaves_Desc";
|
||||
values[] = {"$STR_ACE_Common_Disabled", "$STR_ACE_Common_NameTagSettings", "$STR_ACE_Common_AlwaysShowAll"};
|
||||
};
|
||||
class GVAR(PlayerNamesViewDistance) {
|
||||
class GVAR(playerNamesViewDistance) {
|
||||
value = 5;
|
||||
typeName = "SCALAR";
|
||||
isClientSettable = 0;
|
||||
};
|
||||
class GVAR(PlayerNamesMaxAlpha) {
|
||||
class GVAR(playerNamesMaxAlpha) {
|
||||
value = 0.8;
|
||||
typeName = "SCALAR";
|
||||
isClientSettable = 0;
|
||||
|
@ -41,7 +41,7 @@ class CfgVehicles {
|
||||
};
|
||||
};
|
||||
};
|
||||
class PlayerNamesViewDistance {
|
||||
class playerNamesViewDistance {
|
||||
displayName = "$STR_ACE_NameTags_PlayerNamesViewDistance_DisplayName";
|
||||
description = "$STR_ACE_NameTags_PlayerNamesViewDistance_Description";
|
||||
typeName = "NUMBER";
|
||||
|
@ -21,9 +21,9 @@ if !(_activated) exitWith {};
|
||||
GVAR(Module) = true;
|
||||
|
||||
[_logic, QGVAR(showPlayerNames), "showPlayerNames" ] call EFUNC(common,readSettingFromModule);
|
||||
[_logic, QGVAR(PlayerNamesViewDistance), "PlayerNamesViewDistance" ] call EFUNC(common,readSettingFromModule);
|
||||
[_logic, QGVAR(playerNamesViewDistance), "playerNamesViewDistance" ] call EFUNC(common,readSettingFromModule);
|
||||
[_logic, QGVAR(ShowNamesForAI), "ShowNamesForAI" ] call EFUNC(common,readSettingFromModule);
|
||||
[_logic, QGVAR(showVehicleCrewInfo), "showVehicleCrewInfo" ] call EFUNC(common,readSettingFromModule);
|
||||
[_logic, QGVAR(showCursorTagForVehicles), "showCursorTagForVehicles" ] call EFUNC(common,readSettingFromModule);
|
||||
[_logic, QGVAR(showCursorTagForVehicles), "showCursorTagForVehicles" ] call EFUNC(common,readSettingFromModule);
|
||||
|
||||
diag_log text "[ACE]: NameTags Module Initialized.";
|
||||
|
@ -190,7 +190,7 @@
|
||||
<Polish>Zawsze pokazuj wszystkie</Polish>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_NameTags_ShowPlayerNames_Desc">
|
||||
<English></English>
|
||||
<English>Show player names and its activation. Default: Enabled</English>
|
||||
<Polish>Opcja ta pozwala dostosować sposób wyświetlania imion nad głowami graczy. Opcja "Tylko po wciśnięciu klawisza" wyświetla imiona tylko przytrzymania klawisza "Modyfikator" dostępnego w menu ustawień addonów -> ACE3.</Polish>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_NameTags_ShowSoundWaves_Desc">
|
||||
|
Loading…
Reference in New Issue
Block a user