Learn how to create a platformer game using vanilla JavaScript.
了解如何使用香草JavaScript创建平台游戏。
This tutorial starts with teaching how to organize the code using the Model, View, Controller (MVC) strategy and the principles of Object Oriented Programming (OOP). Then, it shows how to program movement, draw a tile map, and detect collision. Finally, the tutorial teaches how to animate the sprites, load levels, and collect items.
本教程首先讲授如何使用模型,视图,控制器(MVC)策略和面向对象编程(OOP)的原理来组织代码。 然后,它展示了如何对运动进行编程,绘制图块图以及检测碰撞。 最后,本教程将教您如何设置精灵的动画,加载水平并收集物品。
After watching, you will be able to apply the same priciples to create a game of your own.
观看后,您将可以应用相同的原理来创建自己的游戏。
You can watch the video on the the freeCodeCamp.org YouTube channel (3 hour watch).
您可以在freeCodeCamp.org YouTube频道上观看视频(观看3小时)。
翻译自: https://www.freecodecamp.org/news/platformer-game-turorial-javascript/