Why Not

Anything related in any way to game development as a whole is welcome here. Tell us about your game, grace us with your project, show us your new YouTube video, etc.

Moderator: PC Supremacists

Post Reply
User avatar
eatcomics
ES Beta Backer
ES Beta Backer
Posts: 2528
Joined: Sat Mar 08, 2008 7:52 pm
Location: Illinois

Why Not

Post by eatcomics »

I put a vid of my new project on youtube, but I didn't feel like posting here, but I changed my mind...

VID:

Basically its gonna be DOOM stylish game play, run around, pick up items and weapons, and kill stuff. got some more stuff to work out but I'll keep ya updated :D
Image
User avatar
Ginto8
ES Beta Backer
ES Beta Backer
Posts: 1064
Joined: Tue Jan 06, 2009 4:12 pm
Programming Language of Choice: C/C++, Java

Re: Why Not

Post by Ginto8 »

You mention transparency, and I just have to say that it'll be a bitch. Seeing as you can't use builtin alpha (because you're doing depth buffering), you'll have to come up with something else for your glass-ish effects.
Quit procrastinating and make something awesome.
Ducky wrote:Give a man some wood, he'll be warm for the night. Put him on fire and he'll be warm for the rest of his life.
User avatar
eatcomics
ES Beta Backer
ES Beta Backer
Posts: 2528
Joined: Sat Mar 08, 2008 7:52 pm
Location: Illinois

Re: Why Not

Post by eatcomics »

I know, its gonna be a bitch, but I'm sure I'll get it
Image
qpHalcy0n
Respected Programmer
Respected Programmer
Posts: 387
Joined: Fri Dec 19, 2008 3:33 pm
Location: Dallas
Contact:

Re: Why Not

Post by qpHalcy0n »

You're not forced into drawing everything into the z-buffer all the time.

For the transparent faces, just turn z-buffering off and render the transparent faces back to front. Thats all.
User avatar
Lord Pingas
Chaos Rift Regular
Chaos Rift Regular
Posts: 178
Joined: Thu Dec 31, 2009 9:33 am
Favorite Gaming Platforms: NES, SNES, Nintendo 64, Dreamcast, Wii
Programming Language of Choice: C++
Location: Hiding In My Mum's Basement With My Pokemon Cards

Re: Why Not

Post by Lord Pingas »

This video was quite interesting to watch...

Just favorited, liked and subscribed! ;)
User avatar
eatcomics
ES Beta Backer
ES Beta Backer
Posts: 2528
Joined: Sat Mar 08, 2008 7:52 pm
Location: Illinois

Re: Why Not

Post by eatcomics »

qpHalcy0n wrote:You're not forced into drawing everything into the z-buffer all the time.

For the transparent faces, just turn z-buffering off and render the transparent faces back to front. Thats all.
oh, Ok, thanks qp :D
Image
qpHalcy0n
Respected Programmer
Respected Programmer
Posts: 387
Joined: Fri Dec 19, 2008 3:33 pm
Location: Dallas
Contact:

Re: Why Not

Post by qpHalcy0n »

I should have been more specific...

You should test against the Z-Buffer, but not write to it in the transparency pass. So Z-writes should be off.
User avatar
eatcomics
ES Beta Backer
ES Beta Backer
Posts: 2528
Joined: Sat Mar 08, 2008 7:52 pm
Location: Illinois

Re: Why Not

Post by eatcomics »

yeah I'm pretty sure I know what you mean
Image
Post Reply