Settings option: Generate SCENERY REMOVE OBJECTS ZONE triggers at roadbase

Implemented an option in settings to disable or enable the SCENERY REMOVE OBJECTS ZONE triggers generated at roadbases (at the first waypoint).
This commit is contained in:
MetalStormGhost
2023-07-03 18:53:21 +03:00
committed by Raffson
parent 6c210c9d15
commit aafc832e24
3 changed files with 17 additions and 5 deletions

View File

@@ -668,6 +668,16 @@ class Settings:
"AI will always air-start from these bases (due to DCS limitation)."
),
)
ground_start_scenery_remove_triggers: bool = boolean_option(
"Generate SCENERY REMOVE OBJECTS ZONE triggers at roadbase first waypoints",
MISSION_GENERATOR_PAGE,
GAMEPLAY_SECTION,
default=True,
detail=(
"Can be used to remove lightposts and other obstacles from roadbase runways."
"Might not work in DCS multiplayer."
),
)
ground_start_trucks: bool = boolean_option(
"Spawn trucks at ground spawns in airbases instead of FARP statics",
MISSION_GENERATOR_PAGE,