Hi there!
I'm working on a simple bomber. Currently the bomb retracts slower into / extends faster out the fuselage than the bombay door can move.
I want to make it so that the doors open first (hinge), after which the bombs extend out (piston). Meanwhile, I want the opposite to be true for the other direction; piston retracts first, than the doors close.
Could you help me?
This will activate first:
clamp01(smooth(clamp01(Activate1),0.5)>0)
This will activate second:
clamp01(smooth(clamp01(Activate1),0.5)>0.5)
The smooth will output 0 >> 0.5 >> 1 when active, and 1 >> 0.5 >> 0 when deactivated. The second number in the smooth says how many units per second the input can change by (so a 0.5 means it takes 2 seconds to get from 0 to 1, and a smaller fraction will go through the steps more slowly). By comparing this to a number, you can tell it when in a sequence to turn on and off.
This is a good tutorial.
thatll be something to do with delay, hold on ima ask ppl