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...