Hello guys!
Please, Please no more sadness I’m back.
i have been working at some improvements about the gameplay (i guess).
At this version i added “time missions” to guide the player inside the game.
please let me know what do you think about it.
here is the link: https://getjv.github.io/Tomb%20Girl/index.html
I’m having a lot of troubles to correctly use the collection factories… because this i cant implement the game over scene…
Anyone can help with this error?
ERROR:GAMESYS: The collection /loader/selectPlayer.collectionc could not be loaded since it was already. Message 'load' sent from main:/main#script to menu:/loader#selectPlayer.
this it is not true… (i guess) when i exit the selectPlayer.collectionc at first time i had called the unload method.
-- from the selectPlayer collection
function on_message(self, message_id, message, sender)
if message_id == hash("start") then
msg.post("menu:/loader#world1", "load")
end
if message_id == hash("proxy_loaded") then
-- New world is loaded. Init and enable it.
msg.post(sender, "init")
msg.post(sender, "enable")
local proxy = msg.url(".")
msg.post(proxy, "disable")
msg.post(proxy, "final")
msg.post(proxy, "unload")
end
end
what am i doing wrong?