mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
33 lines
793 B
Python
33 lines
793 B
Python
|
|
class Settings:
|
|
|
|
# Difficulty settings
|
|
player_skill = "Good"
|
|
enemy_skill = "Average"
|
|
enemy_vehicle_skill = "Average"
|
|
map_coalition_visibility = "All Units"
|
|
labels = "Full"
|
|
only_player_takeoff = True # Legacy parameter do not use
|
|
night_disabled = False
|
|
external_views_allowed = True
|
|
supercarrier = False
|
|
multiplier = 1
|
|
generate_marks = True
|
|
sams = True # Legacy parameter do not use
|
|
cold_start = False # Legacy parameter do not use
|
|
version = None
|
|
|
|
# Performance oriented
|
|
perf_red_alert_state = True
|
|
perf_smoke_gen = True
|
|
perf_artillery = True
|
|
perf_moving_units = True
|
|
perf_infantry = True
|
|
perf_ai_parking_start = True
|
|
|
|
# Performance culling
|
|
perf_culling = False
|
|
perf_culling_distance = 100
|
|
|
|
|