这是我的code(我正在链接它,因为我不知道问题出在哪里,也不想将所有链接都链接到这篇文章)。我在控制台中收到此错误:
错误在第57行,但我不知道出了什么问题。
rectangle = {
height : 32,
jumping : true,
width : 32;
x : 144,
x_velocity : 0,
y : 0,
y_velocity : 0
};
答案 0 :(得分:1)
只是一个轻微的语法错误,导致您的错误。更新此行:
rectangle = {
height : 32,
jumping : true,
width : 32, // Replace ; with ,
x : 144,
x_velocity : 0,
y : 0,
y_velocity : 0
};