Irrlicht sprite and 2D background?

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
maxi0361
Posts: 24
Joined: Thu Nov 20, 2008 3:04 am

Irrlicht sprite and 2D background?

Post 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?
vitek
Bug Slayer
Posts: 3919
Joined: Mon Jan 16, 2006 10:52 am
Location: Corvallis, OR

Post 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
maxi0361
Posts: 24
Joined: Thu Nov 20, 2008 3:04 am

Post by maxi0361 »

Thx Travis.
You sure clear my confusion
Post Reply