TheBevyFlock / bevy_new_2d

This template is a great way to get started on a new 2D Bevy game!
https://the-bevy-flock.itch.io/bevy-new-2d
MIT License
186 stars 30 forks source link

Add a basic game interaction #11

Closed janhohenheim closed 4 months ago

janhohenheim commented 4 months ago

Something that paints a metaphorical "YOUR GAME LOGIC HERE" sign. I propose having a simple 2D sprite that moves on WASD like in https://github.com/NiklasEi/bevy_game_template

MiniaczQ commented 4 months ago

As mentioned in #3

We can simplify https://github.com/MiniaczQ/bevy-substate-based-ui down to a menu + credits

janhohenheim commented 4 months ago

This goes beyond what that template does, imo

MiniaczQ commented 4 months ago

We could add 2 separate update systems to help showcase the architecture better

As @benfrankel pointed out in #16, the UI code can be simplified down to setup, update, teardown, which can lead users to making a single update system for the entire game logic

MiniaczQ commented 4 months ago

From #32 we have a general direction of a 2D game, what can we make that needs ordering? Maybe an input system + apply movement system?