Hi everyone,
I have a question that's been lingering inside my head for some time now. I'll try to put this in layman's terms because I don't know how ask it any other way.
Suppose you have 3 instances of a certain object (we'll call it "obj_cake").
Each instance has a variable "num" and each...
Will new chunks that have been created run their create event code before being destroyed?
// Destroy all chunks
with (obj_chunk) {
instance_destroy();
}
// Create new chunks
with (obj_asteroid) {
scr_load_chunks(id);
}
// Destroy all chunks
with (obj_chunk) {
instance_destroy();
}