Changeset 1159:6229730a50ed for src/mlx
- Timestamp:
- 04/25/24 18:42:58 (7 months ago)
- Branch:
- python3
- Phase:
- public
- Location:
- src/mlx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/const.py
r1140 r1159 473 473 SOUND_TAXI_F70 = "F70taxi.mp3" 474 474 475 ## Sound: taxi: Tupolev Tu-154 476 SOUND_TAXI_T154 = "154taxi.mp3" 477 475 478 ## Sound: takeoff preparation request from the captain 476 479 SOUND_CAPTAIN_TAKEOFF = "cpt_takeoff.mp3" -
src/mlx/soundsched.py
r1123 r1159 145 145 const.AIRCRAFT_B762 : const.SOUND_TAXI_BOEING767, 146 146 const.AIRCRAFT_B763 : const.SOUND_TAXI_BOEING767, 147 const.AIRCRAFT_F70 : const.SOUND_TAXI_F70 }, 147 const.AIRCRAFT_F70 : const.SOUND_TAXI_F70, 148 const.AIRCRAFT_T154 : const.SOUND_TAXI_T154 }, 148 149 { const.AIRCRAFT_B736 : const.SOUND_TAXI_BOEING737NG_ALT1, 149 150 const.AIRCRAFT_B737 : const.SOUND_TAXI_BOEING737NG_ALT1, … … 152 153 const.AIRCRAFT_B762 : const.SOUND_TAXI_BOEING767_ALT1, 153 154 const.AIRCRAFT_B763 : const.SOUND_TAXI_BOEING767_ALT1, 154 const.AIRCRAFT_F70 : const.SOUND_TAXI_F70 }, 155 const.AIRCRAFT_F70 : const.SOUND_TAXI_F70, 156 const.AIRCRAFT_T154 : const.SOUND_TAXI_T154 }, 155 157 ] 156 158
Note:
See TracChangeset
for help on using the changeset viewer.