Help! I have some trouble with ISceneNodeAnimator

Discussion about Irrlicht's Java wrapper
Post Reply
genius982
Posts: 3
Joined: Sat Dec 13, 2008 8:44 am

Help! I have some trouble with ISceneNodeAnimator

Post by genius982 »

I wanna create my own subclass of ISceneNodeAnimator, but it doesn't work.
for example, I simply create a class A.
class A extends ISceneNodeAnimator {
public A() {
...
}

public void animateNode(ISceneNode node, long timeMs) {
System.out.println("called");
}
}

nothing is ouputed. So I doubt whether the method had been called. How to solve the problem? Help...
Post Reply