Hello . Please Helping me~ ㅠㅠ (CASEMes

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
ssuny1007
Posts: 10
Joined: Mon Jul 23, 2007 2:59 am

Hello . Please Helping me~ ㅠㅠ (CASEMes

Post by ssuny1007 »

Hello .. I am Beginner Programmer~ in Korea..

mm ~

You Know CASEMeshFileLoader??

i use it.. and ~ i something ask you.. ^^

i'm success draw Not animation Object Draw My Screen. ^^

But it is Not Animation.

/// My Source /// :oops:


irr::io::IReadFile *readFileys = 0;
irr::io::IFileSystem *fileName;
fileName = g_Device->getFileSystem();
readFileys = fileName->createAndOpenFile("TestParent.ASE");
irr::scene::CASEMeshFileLoader AseLoader(fileName,g_Driver);
irr::scene::IAnimatedMesh *mmee = AseLoader.createMesh(readFileys);
irr::scene::IAnimatedMeshSceneNode * node = g_SceneManager->addAnimatedMeshSceneNode(mmee);
g_SceneManager->addCameraSceneNode(0,core::vector3df(50.0f,50.0f,-200.0f),core::vector3df(0.0f,0.0f,0.0f));

node->setMaterialFlag(irr::video::EMF_LIGHTING, false);
node->setFrameLoop(0,600);
///

i hope . my object will animation.

Please Help me ..

and Thanks for readding ~~~

have a nice day... :oops:
hybrid
Admin
Posts: 14143
Joined: Wed Apr 19, 2006 9:20 pm
Location: Oldenburg(Oldb), Germany
Contact:

Post by hybrid »

I don't think that ASE supports any kind of animation, but the ASE loader is definitely without animation support. Better use a different mesh format, ASE is usually used for technical drawings.
Post Reply