Profile image

Slow flaps move speed

163 PX41SERUM01  21 days ago

Im wondering guys, well I have a plane and I want the wings to move slower cause I use wings as flaps also. I have this command clamp(VTOL, -1, 0). I want to make it slower but I add commands and nothing works so im wondering with this command can anyone give me combined command with clamp(VTOL, -1, 0) and add another one for speed?

  • Log in to leave a comment
  • Profile image

    You could try adding a smooth() command, i.e.:
    smooth(clamp(VTOL, -1, 0), x) where x represents the speed (e.g. set it to 0.1 for it to move at 1/10 of the normal speed). I've never tried this on control surfaces but theoretically it should work fine.

    21 days ago