mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
* Update F/A-18E/F/G Super Hornet Mod to 2.4.0 * Update F/A-18E/F/G Super Hornet Mod to 2.4.0 * ECM Pods for E/A-18G Growler to allow EW Jammer 2.0 Plugin * Update weapons classes for custom weapons * Adjust default loadouts * Update for Super Hornet 2.4.2 * Change Settings page to reflect 2.4.2 * Remove redeclared weapons * Add Recovery-tasking to tankers * Rewire new tankers to old tanker modsetting * Small bugfix w.r.t. CLI-tool * Save-compat fix: remap old Superbug_AITanker to FA_18ET * Add empty line at EOF * Revert "Add empty line at EOF" This reverts commit 4a7f616e47ace330eec045adc9c0490a67aef7f2. * Restore checkbox for AI Tankers --------- Co-authored-by: Raffson <Raffson@users.noreply.github.com>
In this folder are icons for the different units in DCS / DCS Retribution.
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