Profile image

How do I make an input get deacrivated when I turn another input on

141 Yoinkus  20 days ago

I am trying to make MFDSs

  • Log in to leave a comment
  • Profile image
    12.5k overlord5453

    You will need a basic understanding of variables and variable setter menu for that.

    20 days ago
  • Profile image

    If talking about activation groups:
    you can't
    .
    If talking about variables:
    Remember that if a setter is not active, it will not set the value of its corresponding variable during that frame. This means you can make a setter that changes a variable only in specific conditions.
    .
    E.g., set myVar2 to 0 during a rising edge of myVar1
    myVar2: 0
    - activator: rate(myVar1)>0

    20 days ago