Sample models for Irrlicht

Discuss about anything related to the Irrlicht Engine, or read announcements about any significant features or usage changes.
powerpop
Posts: 171
Joined: Thu Jan 08, 2004 1:39 am
Location: san francisco

Post by powerpop »

the amazing skybox images can be found at:
http://www.kk3d.de/

i found that the order is not the same as the irr example skybox code - its like this:

Code: Select all

	skyboxNode = smgr->addSkyBoxSceneNode(
		driver->getTexture("media/canyon02_UP.jpg"),
		driver->getTexture("media/canyon02_DN.jpg"),
		driver->getTexture("media/canyon02_BK.jpg"),
		driver->getTexture("media/canyon02_FR.jpg"),
		driver->getTexture("media/canyon02_RT.jpg"),
		driver->getTexture("media/canyon02_LF.jpg")

		);
Post Reply