Jump to content

Game Objects not being destroyed


greendot
 Share

Recommended Posts

I'm trying to destroy all the game objects of a scene but some of them still remain in the scene but they're not "active" any longer. By active I mean that they are still being shown and there are still movement applied to them, but they don't collide with other objects. They act like they are ghosts game objects.

They way I'm clearing all the objects is like this:

 

this.allGroups.forEach((group) => {
    group.children.entries.forEach((child) => {
        child.destroy();
    });
    group.clear();
});

 

allGroups is an array of GameObject groups of a scene.

Am I doing anything wrong?

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...