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