OUT_OF_RESOURCES and not being able to load collections error

Hi there can someone explain my errors from the console please, Thanks!

INFO:GRAPHICS: Initialised graphics device ‘opengl’
INFO:ENGINE: Defold Engine 1.4.2 (8cd3a63)
INFO:DLIB: Initialized Remotery (ws://127.0.0.1:17815/rmt)
INFO:ENGINE: Loading data from: build/default
INFO:ENGINE: Initialised sound device ‘default’
ERROR:GAMEOBJECT: The collection ‘default’ could not be created since there is already a socket with the same name.
ERROR:GAMEOBJECT: AcquireResources NewCollection RESULT_OUT_OF_RESOURCES
WARNING:RESOURCE: Unable to create resource: /main/main_menu.collectionc: OUT_OF_RESOURCES
ERROR:GAMESYS: The collection /main/main_menu.collectionc could not be loaded.

Instead of loading my main menu it loads a black screen, in my main_collection it is just a controller go with the controller script and 2 collection proxies for my main menu and my main game that should be able to be loaded through the main menu.

The main error is here:

ERROR:GAMEOBJECT: The collection ‘default’ could not be created since there is already a socket with the same name.

It’s saying that you’re trying to load two collections named ‘default’. Make sure you change the name of your collections in the outline:
Screenshot from 2023-02-19 16-44-21

5 Likes

Thanks!