Just a short question, about deactivation of objects.
I know, when I deactivate an object, it gets no step, no draw events and it's held in a "deactivation" list internally.
Activation/Deactivation just moves the objects between two lists.
What I do not know is, what about "draw"ing in the non-visible area of the room?
I mean, is GameMaker smart enough (or should it even be?) to not draw sprites/objects if no pixel of it can become visible, as no camera sees it?
Asked with other words: if my room is 6k x 6k in dimension and it contains like 1500 little objects, that do nothing in step, but are visible, will gamemaker draw all 1500, even if they are outside of any visible area? So, I should deactivate them?
I ask this because i am curious in such a big room, how the application surface is built. GMS will not make a 6k² surface, right? the surface is the window/browser canvas whatever. So what happens with those objects outside visible areas?