I have just ran into yet another annoying communication issue…
My goal is to have my “score” script (gui_script) post a message to the “level select” script (gui_script.) When the “level select” script receives this message, it will allow for the next level to be unlocked.
But the message isn’t sending!
That was the error I got. You could see that the third line down shows the url. I copied and pasted that into the message script. Still getting this error
Here is the msg.post that communicates between the the “score” and “level select” scripts.
If your project has been created from the Defold dashboard you can add me as a team member (from the Team tab).
If you have the project stored locally on disk or in a private GitHub repo it’s easier to simply zip the entire project folder (excluding .git, .internal and build folders) and e-mail the project or share via some cloud service.
This is my new account. Britzl, I emailed you about an issue that I am having. If you have any insight or a path to a solution that would be greatly appreciated.
Not really sure what you did there, but you mentioned that you deleted your account (why?) but made a copy of the project. Please send that copy over to me and I can take a look. You can create a new empty project on your new account and copy the project files to the empty project (make sure to exclude .git folder if you happened to copy that as well!).
Thank you so much!
I emailed you the correct zipped folder, and I was also able to sync the game, and add you as a team member. More details are in the email that I sent you.
Thank you so very much!
Ok, I’ve taken a look at the code and here is my analysis:
You have a loader.collection with a loader.script as boostrap collection
The loader.collection has collection proxies for menu.collection, levelSelect.collection and level1.collection to level5.collection
Loading of the various collections are done by the loader.script
The levels contain a score gui with the score.gui_script you mention
When you have finished a level the score gui tries to post a message to a component in the levelSelect.collection
The problem is that the levelSelect.collection isn’t loaded.
Your solution would be to post a message from score.gui_script to the loader.script and ask it to load the levelSelect.collection as well as unlock the next level.