melonjsapi不会加载我的地图,也不会收到任何错误

melonjs-api wont load my map and receive no error

本文关键字:错误 任何 地图 加载 我的 melonjsapi      更新时间:2023-09-26

我正在学习教程:http://melonjs.github.io/tutorial/在第2部分的末尾,您应该能够看到您的地图。

梅伦吉斯只是加载和停止,我没有错误。我的文件:http://nicksegers.be/game1/

我做了三次这个教程,就是没法把它发挥作用。总是一样。

您需要编辑game.js的最后一行以显示PLAY而不是MENU。

// Start the game.
me.state.change(me.state.MENU);

更改为:

// Start the game.
me.state.change(me.state.PLAY);

我在他们的跟踪器上打开了一个问题:https://github.com/melonjs/melonJS/issues/402