Skip to content

Commit

Permalink
Update CreateGUI.js
Browse files Browse the repository at this point in the history
  • Loading branch information
fangbian233 authored Jan 22, 2024
1 parent ba05341 commit b7b4eec
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Source/UI/Panorama/CreateGUI.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,35 +189,35 @@ $.Osiris = (function () {

var hud = createTab('hud');
var bomb = createSection(hud, 'Bomb');
createOnOffDropDown(bomb, "Bomb Timer", 'hud', 'bomb_timer');
createOnOffDropDown(bomb, "C4爆炸剩余时间", 'hud', 'bomb_timer');
$.CreatePanel('Panel', bomb, '', { class: "horizontal-separator" });
createOnOffDropDown(bomb, "Defusing Alert", 'hud', 'defusing_alert');
createOnOffDropDown(bomb, "拆弹警报", 'hud', 'defusing_alert');
var killfeed = createSection(hud, 'Killfeed');
createYesNoDropDown(killfeed, "Preserve My Killfeed", 'hud', 'preserve_killfeed');
createYesNoDropDown(killfeed, "保留击杀", 'hud', 'preserve_killfeed');

var visuals = createTab('visuals');
var weapons = createSection(visuals, 'Weapons');
createYesNoDropDown(weapons, "Remove Sniper Scope Blur", 'visuals', 'remove_scope_blur');
createYesNoDropDown(weapons, "移除狙击镜模糊", 'visuals', 'remove_scope_blur');
$.CreatePanel('Panel', weapons, '', { class: "horizontal-separator" });
createYesNoDropDown(weapons, "Remove Scope Overlay", 'visuals', 'remove_scope_overlay');
createYesNoDropDown(weapons, "移除范围覆盖", 'visuals', 'remove_scope_overlay');

var sound = createTab('sound');

var playerSoundVisualization = createSection(sound, 'Player Sound Visualization');
$.CreatePanel('Panel', playerSoundVisualization, '', { class: "horizontal-separator" });
createYesNoDropDown(playerSoundVisualization, "Visualize Player Footsteps", 'sound', 'visualize_player_footsteps');
createYesNoDropDown(playerSoundVisualization, "显示玩家脚步", 'sound', 'visualize_player_footsteps');

var bombSoundVisualization = createSection(sound, 'Bomb Sound Visualization');
createYesNoDropDown(bombSoundVisualization, "Visualize Bomb Plant", 'sound', 'visualize_bomb_plant');
createYesNoDropDown(bombSoundVisualization, "炸弹安装位置", 'sound', 'visualize_bomb_plant');
$.CreatePanel('Panel', bombSoundVisualization, '', { class: "horizontal-separator" });
createYesNoDropDown(bombSoundVisualization, "Visualize Bomb Beep", 'sound', 'visualize_bomb_beep');
createYesNoDropDown(bombSoundVisualization, "可视化炸弹提示音", 'sound', 'visualize_bomb_beep');
$.CreatePanel('Panel', bombSoundVisualization, '', { class: "horizontal-separator" });
createYesNoDropDown(bombSoundVisualization, "Visualize Bomb Defuse", 'sound', 'visualize_bomb_defuse');
createYesNoDropDown(bombSoundVisualization, "可视化炸弹拆除", 'sound', 'visualize_bomb_defuse');

var weaponSoundVisualization = createSection(sound, 'Weapon Sound Visualization');
createYesNoDropDown(weaponSoundVisualization, "Visualize Weapon Scope Sound", 'sound', 'visualize_scope_sound');
createYesNoDropDown(weaponSoundVisualization, "可视化武器瞄准镜声音", 'sound', 'visualize_scope_sound');
$.CreatePanel('Panel', weaponSoundVisualization, '', { class: "horizontal-separator" });
createYesNoDropDown(weaponSoundVisualization, "Visualize Weapon Reload Sound", 'sound', 'visualize_reload_sound');
createYesNoDropDown(weaponSoundVisualization, "可视化武器装弹声音", 'sound', 'visualize_reload_sound');

$.Osiris.navigateToTab('hud');
})();
Expand Down

0 comments on commit b7b4eec

Please sign in to comment.