mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
scenery groups export and deserialization, associated events included in scenery node groups, AI brake charging tweak, door locking and vehicle hunting oscillation sounds
This commit is contained in:
@@ -1764,11 +1764,15 @@ event_manager::export_as_text( std::ostream &Output ) const {
|
||||
|
||||
Output << "// events\n";
|
||||
for( auto const *event : m_events ) {
|
||||
event->export_as_text( Output );
|
||||
if( event->group() == null_handle ) {
|
||||
event->export_as_text( Output );
|
||||
}
|
||||
}
|
||||
Output << "// event launchers\n";
|
||||
for( auto const *launcher : m_launchers.sequence() ) {
|
||||
launcher->export_as_text( Output );
|
||||
if( launcher->group() == null_handle ) {
|
||||
launcher->export_as_text( Output );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user