GML [SOLVED] Do I need to provide variables used in with(all) code to all objects?

MartinK12

Member
In example when I use this code:
Code:
with (all)

        {
            clicked = false;
        }
do I need to provide variable clicked to all objects?

So far I haven't seen any issues with objects that don't have this variable but I want to make sure if this can break something? Thank You.
 
Top