Changeset 8929 for code/branches
- Timestamp:
- Nov 9, 2011, 4:12:35 PM (13 years ago)
- Location:
- code/branches/hud
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/hud/data/gui/scripts/MiscConfigMenu.lua
r8729 r8929 36 36 table.insert(P.commandList, "ChatOverlay displayTime_") 37 37 table.insert(P.commandList, "Core bDevMode_") 38 table.insert(P.commandList, "HUDNavigation MarkerLimit_") 39 table.insert(P.commandList, "HUDNavigation showDistance") 38 40 39 41 P.nameList = {} … … 56 58 table.insert(P.nameList, "Chat: display time") 57 59 table.insert(P.nameList, "Developer's Mode") 60 table.insert(P.nameList, "Marker Limit") 61 table.insert(P.nameList, "Show Distance next to cursor") 58 62 59 63 P.linesList = {} -
code/branches/hud/data/levels/underAttack.oxw
r8706 r8929 51 51 maxhealth = 10000 52 52 initialhealth = 10000 53 RVName = "Transporter" 53 54 > 54 55 -
code/branches/hud/src/modules/overlays/hud/HUDNavigation.cc
r8920 r8929 64 64 { 65 65 SetConfigValue(markerLimit_, 3); 66 SetConfigValue(showDistance, false); 66 67 } 67 68 … … 78 79 setTextSize ( 0.05f ); 79 80 setNavMarkerSize ( 0.05f ); 80 this->showDistance = false;81 81 } 82 82 -
code/branches/hud/src/orxonox/worldentities/pawns/Pawn.cc
r8855 r8929 129 129 XMLPortParam(Pawn, "reloadrate", setReloadRate, getReloadRate, xmlelement, mode).defaultValues(0); 130 130 XMLPortParam(Pawn, "reloadwaittime", setReloadWaitTime, getReloadWaitTime, xmlelement, mode).defaultValues(1.0f); 131 132 XMLPortParam ( RadarViewable, "RVName", setRVName, getRVName, xmlelement, mode ); 131 133 } 132 134
Note: See TracChangeset
for help on using the changeset viewer.