KeyNodeRotateRightAction rotateRight = new KeyNodeRotateRightAction(node, 5f);
rotateRight.setLockAxis(node.getLocalRotation().getRotationColumn(1));
//PhysicsRotateKeyAction rotateRight = new PhysicsRotateKeyAction(tank, -200000f);
addAction(rotateRight, "turnRight", true);
KeyNodeRotateLeftAction rotateLeft = new KeyNodeRotateLeftAction(node,5f);
rotateLeft.setLockAxis(node.getLocalRotation().getRotationColumn(1));
//PhysicsRotateKeyAction rotateLeft = new PhysicsRotateKeyAction(tank, 200000f);
addAction(rotateLeft, "turnLeft", true);
}