我有一个小问题。我正在使用CraftyJS开发游戏,并且需要使用Electron来运行它,但是Electron会引发以下错误:

Uncaught TypeError: Crafty.scene is not a function
at Level1.js:4

为什么这样做呢?这是相关的代码+标记:
<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title>Overtime-game</title>
 </head>
 <body>
  <div id="game"></div>
  <script type='text/javascript' src='./node_modules/craftyjs/dist/crafty.js'></script>
  <script src='./Level1.js'>
  </script>
 </body>
</html>

JS:
//Relevant code:
Crafty.scene('main', function() {
Crafty.init(500,500, document.getElementById('game'));
// rest of Crafty.scene...
}
Crafty.scene('main')

最佳答案

固定在 Electron 论坛上:显然,如果您需要文件中的模块,Electron不会在node_modules中查找。
https://discuss.atom.io/t/solved-typeerror-crafty-scene-is-not-a-function/61273

关于javascript - TypeError : Crafty.场景不是函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53825875/

10-09 14:21