rust-adventure / 2048

A course that teaches you Rust by building 2048 with the Bevy ECS engine.

Home Page:https://www.rustadventure.dev/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bevy 0.14 version

ChristopherBiscardi opened this issue · comments

Bevy 0.14 is out. The 0.14 updates to the codebase are in the 0.14 branch (2048 diff from 0.13)

Notable changes

  • Observers for new tile events
    • We never insert multiple tiles, so we don't need batching, etc for events. Therefore Observers are a better fit.
  • Move away from Startup in favor of OnEnter(State)
  • Introduce ScalingMode
    • This allows defining some space for the UI and introduces the idea that a camera has a transform
  • Use a new font.
    • There is a default font, but most people will want to change that, so use one.
  • button tinting has changed

Known Issues in 0.14

scripting is in-progress