Changeset 11292
- Timestamp:
- Nov 14, 2016, 4:08:55 PM (8 years ago)
- Location:
- code/branches/Dialog_HS16
- Files:
-
- 4 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/Dialog_HS16/data/levels/missionOne.oxw
r11270 r11292 32 32 name="narrative" 33 33 targets="simpleNotification,dialogue" 34 size=3 ,134 size=3 35 35 displayTime=3.9 36 36 position="0.2, 0, 0.1, 0" -
code/branches/Dialog_HS16/data/overlays/HUDTemplates3.oxo
r11052 r11292 184 184 weaponModeHUDSize = "0.09, 0.03" 185 185 /> 186 187 <HUDDialogue 188 name = "Dialogue" 189 position = "0.5, 0.85" 190 font = "VeraMono" 191 textsize = 0.1 192 colour = "1.0, 1.0, 0.0, 0.8" 193 align = "center" 194 /> 195 186 196 187 197 <HUDTimer -
code/branches/Dialog_HS16/src/modules/notifications/dispatchers/CMakeLists.txt
r11247 r11292 3 3 SimpleNotification.cc 4 4 Dialogue.cc 5 DialogueManager.cc 5 6 ) -
code/branches/Dialog_HS16/src/modules/notifications/dispatchers/Dialogue.h
r11270 r11292 23 23 const std::string& getSpeaker(void) 24 24 {return this->speaker_;} 25 26 25 protected: 27 26 virtual const std::string& createNotificationMessage(void); … … 37 36 void setMessage(const std::string& message) 38 37 { this->message_ = message; } 39 40 38 } ; 41 39 -
code/branches/Dialog_HS16/src/modules/overlays/hud/CMakeLists.txt
r11052 r11292 25 25 LastTeamStandingInfos.cc 26 26 CountDown.cc 27 HUDDialogue.cc 27 28 )
Note: See TracChangeset
for help on using the changeset viewer.