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?
Slow flaps move speed
283 PX41SERUM01
6 months ago
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.