From f8848aea166ef89814f1603d660d90d57c3827a6 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 28 Jul 2017 01:42:25 +0200 Subject: [PATCH] Incomplete banner mask converter --- tools/Texture_Converter.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tools/Texture_Converter.py b/tools/Texture_Converter.py index 356b5b03..f0df481f 100755 --- a/tools/Texture_Converter.py +++ b/tools/Texture_Converter.py @@ -149,6 +149,13 @@ def convert_textures(): convert_alphatex(GRASS, tex_dir+"/blocks/double_plant_grass_bottom.png", "70+120", str(PXSIZE), target_dir("/mods/ITEMS/mcl_flowers/textures")+"/mcl_flowers_double_plant_grass_bottom.png") convert_alphatex(GRASS, tex_dir+"/blocks/double_plant_grass_top.png", "70+120", str(PXSIZE), target_dir("/mods/ITEMS/mcl_flowers/textures")+"/mcl_flowers_double_plant_grass_top.png") +# TODO: Convert banner masks +# if os.path.isdir(tex_dir + "/entity/banner"): +# These are the ImageMagick commands needed to convert the mask images +# os.system("mogrify -transparent-color "+filename) +# os.system("mogrify -clip-mask "+tex_dir+"/entity/banner/base.png"+" -alpha Copy "+filename) +# os.system("mogrify -fill white -colorize 100 "+filename) + if make_texture_pack and not os.path.isdir("./texture_pack"): os.mkdir("texture_pack")