2-sided texture

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
Virion
Competition winner
Posts: 2148
Joined: Mon Dec 18, 2006 5:04 am

2-sided texture

Post by Virion »

Does irrlicht support 2-sided texturing?
Tanuva
Posts: 54
Joined: Tue Oct 10, 2006 6:49 pm
Location: 200 metres behind the moon
Contact:

Post by Tanuva »

Afaik it does not because polygons only have one upside and only that one is being textured...
Tanuva
Virion
Competition winner
Posts: 2148
Joined: Mon Dec 18, 2006 5:04 am

Post by Virion »

Tanuva wrote:Afaik it does not because polygons only have one upside and only that one is being textured...
Ohh thanks for the reply. I guess I know how to solve this problem. I will clone the faces and flip it, then combine the both together. I hopes this will work. Thanks. :D
castefani
Posts: 4
Joined: Sun Apr 22, 2007 11:14 pm

Try this

Post by castefani »

Material.BackfaceCulling = false;
Virion
Competition winner
Posts: 2148
Joined: Mon Dec 18, 2006 5:04 am

Re: Try this

Post by Virion »

castefani wrote:Material.BackfaceCulling = false;
>_<" *sweat* I already combined the 2 sides...
Anyway, this should help other people who having the same problem like me. And I learned something too. :opps:

Thanks castefani. :D
Post Reply