2

我有一个小问题。我正在使用 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') 
4

1 回答 1

0

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

于 2019-01-17T10:38:30.323 回答