Is this possible?
On start of layout, I want all objects outside of layout destroyed (Done by destroy outside of layout behavior)
After that, I want them to no longer be destroyed outside of layout. (I have an object that connects to the mouse, so if the player reaches the outside of the layout it destroys the object)
I think I should probably just have "on start of layout, destroy x,y,z, etc" But I was just curious if it was possible for events to disable/remove behaviors from entire families.
Edit: I fixed the issue with the mouse object being destroyed by setting it bound to layout, so it's never destroyed by exiting. - Still wondering if the above is possible though!