Java Programming Tutorial | 2D Platformer

preview_player
Показать описание
This is a small Java programming tutorial, in which we make and play our own 2D Platformer game. I might make more parts to this, I'm not sure yet. Thanks for watching! :)
Рекомендации по теме
Комментарии
Автор

Guys! Do not follow this, as it is outdated and it's not the correct way of doing things. I will be uploading a simple tutorial in Java sooner or later.

devonsteyn
Автор

Whoops! At 13:36, I said that when the player intersects the platform, y = platformOne.y - player.getWidth(), it should be player.getHeight()

In this case it doesn't really matter, because the width and the height are exactly the same, but for future, just remember to use player.getHeight(); and not player.getWidth()

Thanks for reading :)

devonsteyn