I have a question on Irrlicht is that "can we set the starting point and the ending point when using the fucntion createFlyCircleAnimator()? ". In fact, I want to attach the camera to this flying node. But the starting point of the camera is not suitable for me.
Can anyone help me a bit? Thanks.
Here are some of my code:
cam = smgr->addCameraSceneNode(0, core::vector3df(0,80,-100), core::vector3df(0,0,0));
anim =smgr->createFlyCircleAnimator(core::vector3df(0,80,0), 100.0f, 0.0001f,core::vector3df(0.f, 1.f, 0.f));
cam->addAnimator(anim);

