Ошибка типа: Crafty.scene не является функцией - PullRequest
0 голосов
/ 18 декабря 2018

У меня небольшая проблема.Я разрабатываю игру, используя 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') 

1 Ответ

0 голосов
/ 17 января 2019

ИСПРАВЛЕНО НА ЭЛЕКТРОННЫХ ФОРУМАХ: Очевидно, если вам требуется модуль в файле, Electron не будет искать в node_modules.https://discuss.atom.io/t/solved-typeerror-crafty-scene-is-not-a-function/61273

...