mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
Updates the filename of the F-16A banner so that liberation can read it. Updates the F-16A.yaml resource file to add BAI / CAS / antiship mission types - since the 15A is capable of these. Updated the F-16A payload provide more capability - primarily adding jamming pods to the centerline, moving the fuel tanks from the centerline to the inner wings, replacing the AIS_ASQ_T50 on the wingtips with 120Bs, and changing the CAP loadout to have 120Bs on pylons 8 and 3 so they fall back to sparrows on historical campaigns.
In this folder are icons for the different units in DCS / DCS Liberation.
How were these retrieved :
- I took screenshoot of the units from the encyclopedia in DCS. If you want to add more pictures, please do the same, so that the units have the same background.
- Then resized all the image so that have static size. Aspect ratio is not perfect, but it's hard to notice on such small image.
import os
from PIL import Image
for img_name in os.listdir("."):
if os.path.isfile(img_name) and img_name.endswith(".png"):
print(img_name)
img = Image.open(img_name)
img = img.resize((64,24), Image.ANTIALIAS)
img.save('./out/' + img_name[:-4] + "_24.jpg")
You need PIL to run the script :
pip install PIL
If you want access to get my high res screenshoot, i still have them, but to reduce size and ram usage, i believe it's better to use super small jpg icons instead.
@Khopa