Frictional Games Forum (read-only)
Menu logo not transparent? - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html)
+--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html)
+---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html)
+---- Thread: Menu logo not transparent? (/thread-10730.html)

Pages: 1 2 3


RE: Menu logo not transparent? - nemesis567 - 10-22-2011

Amnesia uses targa files for graphics. There's no reason to try .png. Just open the original files and find your answer.



RE: Menu logo not transparent? - Your Computer - 10-22-2011

(10-22-2011, 12:05 AM)nemesis567 Wrote: Amnesia uses targa files for graphics. There's no reason to try .png. Just open the original files and find your answer.

Actually, Amnesia uses whatever DevIL supports. If you look at many custom stories that make use of TGA files for, say, inventory items, you'll notice many that have failed to make a proper transparent image. I'd say, use whatever works from the supported list.


RE: Menu logo not transparent? - xiphirx - 10-22-2011

Make sure its a 32bit targa.


RE: Menu logo not transparent? - nemesis567 - 10-22-2011

Targa is the one that allows best quality/performance. They failed because they though that transparency in these graphics meant alpha - 100%. It doesn't work like that. RGB:255, 255, 255 means transparent. That already happened in previous engines such as the well known valve half life engine which used RGB:0,0,255 to represent alpha 100% points.