Page 1 of 1

Irrlicht sprite and 2D background?

Posted: Sun Nov 23, 2008 1:19 pm
by maxi0361
I am developing 2D with irrlicht.
for now, I am only using driver->draw2DImage().

Is there any other features related to 2D in irrlicht?
set scale and rotation for example?

what is I want to have a 2D background image, I use draw2DImage too?

Posted: Sun Nov 23, 2008 9:50 pm
by vitek
There is only draw2DImage() or orthographic projection of things rendered in 3d. If you want a background, use draw2DImage() (directly or indirectly). You must draw the background first, then everything else on top.

Travis

Posted: Mon Nov 24, 2008 3:36 am
by maxi0361
Thx Travis.
You sure clear my confusion