mirror of
https://github.com/minetest/minetest_game.git
synced 2024-10-31 23:30:31 +01:00
6bd059915c
Only a single program was used to safely compress all textures in MTG. * `optipng -o7 -zm1-9 -nc -strip all -clobber %%f` The key command used is -nc, which stops color mode changes. I.e. any RGBA textures will remain RGBA textures, with none being changes to 8-bit indexed mode. utils/optimize_textures.sh performs this compression automatically, assuming optipng is installed.
7 lines
243 B
Bash
7 lines
243 B
Bash
#!/bin/bash
|
|
|
|
# Colors with 0 alpha need to be preserved, because opaque leaves ignore alpha.
|
|
# For that purpose, the use of indexed colors is disabled (-nc).
|
|
|
|
find -name '../*.png' -print0 | xargs -0 optipng -o7 -zm1-9 -nc -strip all -clobber
|