Hey! Guest! The 40th (!!!) GMC Jam will take place between February 25th, 12:00 UTC to March 1st 12:00 UTC. Why not join in this very special anniversary jam! Click here to find out more!
Hey, i was wondering if the is a way to check if one variable is equals to 1,for example, in all objects of one type:
if(all of object one type.variablenamehere==1){
then do something
}
var proceed = true;
with (some_object) { // with (all) is also valid
if (variable_name != 1) {
proceed = false;
break;
}
}
if (proceed) {
// do something
}