Show state with multiple dials set correctly

Nov 22, 2022

How do I show the "correct" layer when both arm 1 and arm 2 (dials) are set within a particular range? For example, I need the user to set one arm to the knee red dot and the other to the torso red dot. When they are both set correctly, I want to show a "correct" layer. See attached file: 

5 Replies
Russell Killips

Hi Keith,

I think you will need two triggers. 1 trigger for when Arm1 changes and another for when Arm2 changes.

Show layer Correct
  When Arm1 changes
    If Arm1 is between A and B
      and Arm2 is between C and D

Show layer Correct
  When Arm2 changes
    If Arm1 is between A and B
      and Arm2 is between C and D

Michael Hinze

Have a look at the attached and see if that's what you wanted. When either arm is moved a True/False variable is toggled. Based on that change the correct layer is shown if the both arm variables are within a particular range. You should adjust the starting position of both arms, so that they do not start out in the correct position already.