mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
Move to hold points more slowly.
This should give the AI a better chance to climb before reaching the waypoint.
This commit is contained in:
parent
de3ba5908f
commit
0b8ac8fc47
@ -75,6 +75,14 @@ class FlightPlan:
|
||||
# Flights that start airborne already have some altitude and a good
|
||||
# amount of speed.
|
||||
factor = 0.5
|
||||
elif b.waypoint_type == FlightWaypointType.LOITER:
|
||||
# On the way to the hold point the AI won't climb unless they're in
|
||||
# formation, so slowing down the flight lead gives them more time to
|
||||
# form up and climb.
|
||||
# https://forums.eagle.ru/forum/english/digital-combat-simulator/dcs-world-2-5/dcs-wishlist-aa/7121300-ai-flights-will-not-climb-to-hold-point-because-wingman-not-joined
|
||||
#
|
||||
# Plus, it's a loiter point so there's no reason to hurry.
|
||||
factor = 0.75
|
||||
# TODO: Adjust if AGL.
|
||||
# We don't have an exact heightmap, but we should probably be performing
|
||||
# *some* adjustment for NTTR since the minimum altitude of the map is
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user