Is there a way to check if three (or more) variables are identical like you can do in Python?
if var1 == var2 == var3:
pass
What would be the most elegant way to do this in GDScript? Would I have to do this?
if var1 == 'string' and var2 == 'string' and var3 == 'string':
pass
Thanks :-)