Changeset 1159:6229730a50ed


Ignore:
Timestamp:
04/25/24 18:42:58 (18 hours ago)
Author:
István Váradi <ivaradi@…>
Branch:
python3
Phase:
public
Tags:
tip
Message:

Added a taxi sound file for the Tupolev Tu-154 aircraft (re #387).

Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/const.py

    r1140 r1159  
    473473SOUND_TAXI_F70 = "F70taxi.mp3"
    474474
     475## Sound: taxi: Tupolev Tu-154
     476SOUND_TAXI_T154 = "154taxi.mp3"
     477
    475478## Sound: takeoff preparation request from the captain
    476479SOUND_CAPTAIN_TAKEOFF = "cpt_takeoff.mp3"
  • src/mlx/soundsched.py

    r1123 r1159  
    145145                 const.AIRCRAFT_B762  : const.SOUND_TAXI_BOEING767,
    146146                 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 },
    148149               { const.AIRCRAFT_B736  : const.SOUND_TAXI_BOEING737NG_ALT1,
    149150                 const.AIRCRAFT_B737  : const.SOUND_TAXI_BOEING737NG_ALT1,
     
    152153                 const.AIRCRAFT_B762  : const.SOUND_TAXI_BOEING767_ALT1,
    153154                 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 },
    155157               ]
    156158
Note: See TracChangeset for help on using the changeset viewer.