private void createSpeakingAnimations(Entity entity) {
ScaleAnimationProcessor scaler = new ScaleAnimationProcessor(entity, innerOrbNode, 1.0f, OUTER_RADIUS/INNER_RADIUS * 0.9f);
Clip scalingClip = Clip.create(1000, Clip.INDEFINITE, scaler);
scalingClip.setRepeatBehavior(RepeatBehavior.REVERSE);
scalingClip.start();
scalingClip.pause();
animations.add(scalingClip);
//Need to add a colour animator?
}
private void setRenderState(Sphere aSphere, RenderState aRenderState) {