This probably has a simple solution, but I've been banging my head against the wall for a week trying to figure it out alone.
I have two instances of object type "Royalty": royal1 and royal2. They both have the instance variable of "married" with a boolean value and are created at the start of the layout.
I want to create a condition that says do this if royal1.married == false AND royal2.married == false. In Construct 3, is it possible to compare the instance variables of instances of the same type?
For context, the last engine I used was Unity. I know how to compare instance variables with OOP languages, but I'm finding it difficult to understand how to target specific instances in Construct's event sheet when the object instance isn't the last active instance.
Any insight would be helpful.