Modcraft - The community dedicated to quality WoW modding!

Content creation => Texturing and 2D Art => Topic started by: morbent on June 04, 2016, 10:46:53 pm

Title: [SOLVED] [QUESTION] [WotLk] Texture Transparency
Post by: morbent on June 04, 2016, 10:46:53 pm
Ok, so I'm trying to make guild symbols (with transparent backgrounds).

The other thread solution didn't work for me (Ascathos' batch conversion and BLPLab (it cannot create WoW BLPs) so I'll ask a similar question - how do I make a transparent wow texture with BLPConverter?

I need to create an indexed png with an alpha channel but no such thing exists so I am really stuck. If I make a regular png and give it transparency it just turns it into a DXT 5 Format which does not preview in WoW. It is fully transparent.

The other textures are in Format: palette + alpha. How do I achieve this?

Attaching a few pngs if anyone want to see what they are like:

[attachment=1:2to571xv]Emblem_07_14_TU_U.png[/attachment:2to571xv]
[attachment=0:2to571xv]Emblem_07_14_TL_U.png[/attachment:2to571xv]
Title: Re: [QUESTION] [WotLk] Texture Transparency
Post by: Alastor on June 05, 2016, 07:47:17 am
Blp convertor can deal wtih png transparency without problems but model that is loading texture is ordering renderflags
Title: Re: [QUESTION] [WotLk] Texture Transparency
Post by: Amaroth on June 05, 2016, 11:23:32 am
https://www.dropbox.com/s/pf9voauhthpt4 ... r.rar?dl=0 (https://www.dropbox.com/s/pf9voauhthpt49x/BLiPster.rar?dl=0" onclick="window.open(this.href);return false;)
GUI for GUI lovers. Use Clothing texture option. Thats pretty much all.
Title: [SOLVED] Re: [QUESTION] [WotLk] Texture Transparency
Post by: morbent on June 05, 2016, 01:20:13 pm
Wait what? I have to change the model?
What is a renderflag?

Update: Just tested BLiPster - this is amazing! Why do people even use a batch file? This thing converts stuff in seconds and with transparency and all that.
Thanks a lot Amaroth!
Title: Re: [SOLVED] [QUESTION] [WotLk] Texture Transparency
Post by: Alastor on June 05, 2016, 01:33:05 pm
I use cmd version specialy because its cmd

my fav example
Code: [Select]
@echo off
for /r %%i in (*.blp) do BLPConverter8.exe "%%i"
FOR /r %%A IN (*.blp) DO DEL %%A

this convert all blps to pngs in folder and even subfolder + its deleting blp once they are converted
Title: Re: [SOLVED] [QUESTION] [WotLk] Texture Transparency
Post by: Amaroth on June 05, 2016, 01:51:29 pm
BLiPster can do... as far as I know... nothing what one would not be able to achieve just with basic BLPConverter. It even uses BLPConverter. However, if you are not familiar with windows command line, .bat files and so on, this is just far easier way. And probably less time consuming.