I want to call a function when the elements in a list change.
The thing is, multiple elements can be changed every frame, and I only want to run the function after all the changes have been made rather than after each individual change. And basically I’m trying to avoid using an Update
loop to check whether or not the elements have changed since last frame to call the function.
Is what I’m trying to do possible?