I have a blender model that has many different animations. I am trying to use the walk animation.
AnimControl control = characterNode.getControl(AnimControl.class);
control.addListener(new AnimEventListener() {
//empty event listener methods are in here
channel = control.createChannel();
channel.setAnim("walk");
I am getting a NullPointerException
Uncaught exception thrown in Thread[LWJGL Renderer Thread, 5,main]
I think that it has to do with the AnimControl.class being empty. Anything helps. Thanks in advance