Update: I tried the method ".is_null?" that one gave me false prior to deleting and true after the object was deleted.
Thanks everyone!!! This has been super informative.
Hi,
I have tried the method ".is_valid" but even that gives me an error. It seems like it won't let me use any method on a deleted object.
> inst[0][0].is_valid?
true
> inst[0][0].delete
> inst[0][0].is_valid?
RuntimeError: …
Another question though, when you do inst[row-1][col-1].delete (last line) it deletes the shape, but what becomes of that position (row, col) after you delete it? Is it a nil or a 0?
For example, I am trying to delete 500 random shapes out of 2025 (…
Thank you David,
Now that I have each object in an individual cell how can I call upon them in a script? Do I call upon them by their cell name like I would with a variable?
Sorry, if my questions sound strange, I'm more of a matlab/matrix kind of p…