opSched.scheduleOperation(this);
KeyAdjustableFloat heightAdjust = new KeyAdjustableFloat(
Keys.PAGE_DOWN, Keys.PAGE_UP, .6f, opSched);
new MemberConnection(this, "height", heightAdjust, "value", opSched);
KeyAdjustableFloat angleAdjust = new KeyAdjustableFloat(
Keys.RIGHT, Keys.LEFT, 50f, opSched);
new MemberConnection(this, "angle", angleAdjust, "value", opSched);
KeyAdjustableFloat distAdjust = new KeyAdjustableFloat(Keys.UP,
Keys.DOWN, .6f, opSched);
new MemberConnection(this, "distance", distAdjust, "value", opSched);
new FloatLowerLimiter(heightAdjust, "value", .4f, opSched);
new FloatUpperLimiter(heightAdjust, "value", 8f, opSched);
heightAdjust.setValue(1f);