Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions game/neo/cfg/callout.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
alias +enablePlacePainting nav_toggle_place_painting
alias -enablePlacePainting nav_toggle_place_painting

bind mouse1 +enablePlacePainting
bind mouse2 nav_place_pick
11 changes: 11 additions & 0 deletions game/neo/scripts/HudLayout.res
Original file line number Diff line number Diff line change
Expand Up @@ -1026,4 +1026,15 @@
"SmallWeaponsFont" "NHudSpectatorOverlaySmallWeapons"
"DeadTexture" "vgui/hud/kill_kill"
}

neo_place_name
{
"fieldName" "neo_place_name"

"textXpos" "-4"
"textYpos" "4"
"textFont" "NHudOCRSmallNoAdditive"
"textColor" "255 255 255 255"
"textXAlignment" "2"
}
}
1 change: 1 addition & 0 deletions game/neo/scripts/kb_act.lst
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"messagemode" "#Valve_Chat_Message"
"messagemode2" "#Valve_Team_Message"
"+attack3" "Ping Location"
"+showplacenames" "Show Nearby Place Names"
"joinstar 0" "Join Alpha Star"
"joinstar 1" "Join Bravo Star"
"joinstar 2" "Join Charlie Star"
Expand Down
5 changes: 5 additions & 0 deletions src/game/client/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1571,6 +1571,7 @@ target_sources_grouped(
set(UNITY_SOURCE_NEO_SRC_CLIENT
neo/c_neo_message.cpp
neo/c_neo_npc_dummy.cpp
neo/c_neo_point_world_text.cpp
neo/c_neo_player.cpp
neo/c_neo_te_tocflash.cpp
neo/neo_fixup_glshaders.cpp
Expand All @@ -1589,6 +1590,7 @@ target_sources_grouped(
FILES
neo/c_neo_message.h
neo/c_neo_npc_dummy.h
neo/c_neo_point_world_text.h
neo/c_neo_player.h
neo/c_neo_te_tocflash.h
neo/neo_fixup_glshaders.h
Expand Down Expand Up @@ -1665,6 +1667,7 @@ set(UNITY_SOURCE_NEO_UI
neo/ui/neo_hud_health_thermoptic_aux.cpp
neo/ui/neo_hud_hint.cpp
neo/ui/neo_hud_message.cpp
neo/ui/neo_hud_place_name.cpp
neo/ui/neo_hud_player_ping.cpp
neo/ui/neo_hud_round_state.cpp
neo/ui/neo_hud_spectator_overlay.cpp
Expand Down Expand Up @@ -1707,6 +1710,7 @@ target_sources_grouped(
neo/ui/neo_hud_health_thermoptic_aux.h
neo/ui/neo_hud_hint.h
neo/ui/neo_hud_message.h
neo/ui/neo_hud_place_name.h
neo/ui/neo_hud_player_ping.h
neo/ui/neo_hud_round_state.h
neo/ui/neo_hud_spectator_overlay.h
Expand Down Expand Up @@ -1748,6 +1752,7 @@ target_sources_grouped(
NAME "Source Files\\Shared"
FILES
${CMAKE_SOURCE_DIR}/game/shared/neo/achievements_neo.h
${CMAKE_SOURCE_DIR}/game/shared/neo/nav_shared.h
${CMAKE_SOURCE_DIR}/game/shared/neo/neo_gamerules.h
${CMAKE_SOURCE_DIR}/game/shared/neo/neo_ghost_cap_point.h
${CMAKE_SOURCE_DIR}/game/shared/neo/neo_juggernaut.h
Expand Down
Loading