How to make for each children in array in object, I can only do this with global arrays but I can’t do this on an array in object, please help.
It doesn’t work for an object array. You can either copy the object array to a scene variable and use it with for each child or use a repeat event with a variable for the index.
Counter =0
Repeat object array count times
Then within the repeat you can use the variable named Counter for the index.
Object variableName[Counter]
With more details, someone can provide more specific details if needed.
Repeatedly copying an object array with Json to a scene variable would add more processing. The repeat is probably a better choice.
Here’s an example. It goes through an array that contains 1,2,3. Using the compare 2 numbers it checks if the array value is 2. If it’s 2 then it adds it to a text object.