Search found 3 matches

by ShaZe
Sun Sep 15, 2013 12:21 pm
Forum: ID Tech
Topic: Any body tinkered with Rage?
Replies: 5
Views: 3965

Re: Any body tinkered with Rage?

That's nice, I never noticed that they actually released the Editor / SDK. I thought it was going to be a myth seeing that it never showed up a few weeks after release. If I was back in college where I enjoyed messing around with the latest engines and building up my portfolio, I would definitively ...
by ShaZe
Mon Aug 12, 2013 11:30 pm
Forum: ID Tech
Topic: How to - Technical Discussion
Replies: 36
Views: 33404

Re: How to - Technical Discussion

Hi and welcome! You need to save your .png file as 24-bit with transparency. You also need a shader to tell the game how you want the texture to appear in game. See the shader manual linked below. Ahh, I had tried to use a shader in case the engine was not handling the format natively, but I though...
by ShaZe
Mon Aug 12, 2013 9:18 am
Forum: ID Tech
Topic: How to - Technical Discussion
Replies: 36
Views: 33404

Re: How to - Technical Discussion

An alpha channel/mask is a greyscale mask that sets the transparency of each pixel in an image from 0 (black) = fully transparent to 1 (white) = fully opaque. For Q3 it can only be used for TGA files, but ioQ3/QL there's the PNG format that gets rid of the need of dealing with alpha channels. What ...