'if something == something show something and keep showing it

so when this is true i want to keep the images even when this turns false later

if (pose && label=="HowMuchCanYouSee"==true){
    
    let eyeR = pose.rightEye;
    let eyeL = pose.leftEye;
    let d = dist(eyeR.x, eyeR.y,eyeL.x, eyeL.y);
    
    
    //sharingan complete
    image(img1,pose.leftEye.x-d/2,pose.leftEye.y-d/2, d,d);
    image(img1,pose.rightEye.x-d/2,pose.rightEye.y-d/2, d,d);
}


Solution 1:[1]

I don't understand why the condition looks like this label=="HowMuchCanYouSee"==true and not just this label=="HowMuchCanYouSee"

Anyway you may add a new flag to the story starting with false that will be turned to true the first time your code it's hit, and after then, the condition will always pass because there's flag===true put in OR:

var flag = false;
if( flag === true || (pose && label=="HowMuchCanYouSee") ){
    flag = true;
    //the rest of your code
}

Attention: the flag var is declared global. That's not a good practice but it shows the concept.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Diego De Vita