Profile image

Need another help with FT inputs....ill give u a cookie

1,902 RavenG59  3.5 years ago

How to activate an engine for 1 second after activating a certain group after 1 second of activating that group
Ex: I activate a group then after 1 second an engine starts up and after 1 second it shut down automatically

  • Log in to leave a comment
  • Profile image

    @RavenG59
    clamp01(smooth(Activate1,clamp01(Activate1))>0)
    or
    clamp01(smooth(Activate1,(Activate1?1,200))>0)
    ?

    3.5 years ago
  • Profile image
    1,902 RavenG59

    @PlanariaLab unfortunately nope

    3.5 years ago
  • Profile image

    @RavenG59
    (smooth(Activate1,clamp01(Activate1))>0)
    Maybe this works

    3.5 years ago
  • Profile image
    1,902 RavenG59

    @PlanariaLab btw i need another help..
    How do i make an engine starts up after 1 second after activating a group and keeps running ?...i think this is simple but i really know nothing about FT
    Thx in advance

    3.5 years ago
  • Profile image
    1,902 RavenG59

    @PlanariaLab thx alot man works perfectly

    +1 3.5 years ago
  • Profile image

    ceil(repeat(clamp01(smooth(Activate1,clamp01(Activate1))),1))
    for one-time use.
    ceil(repeat(clamp01(smooth(Activate1,(Activate1?1:200))),1))
    if used multiple times.

    +1 3.5 years ago