Skip to content

Releases: jkb0o/belly

v0.5.0

20 Apr 07:55
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.4.1...v0.5.0

v0.4.1

16 Mar 08:28
Compare
Choose a tag to compare

Bevy 0.12 support (+Fix wrong dependency from 0.4)

v0.4.0

13 Mar 13:02
Compare
Choose a tag to compare

bevy-0.12 support

v0.2.0

01 Apr 17:34
Compare
Choose a tag to compare

bevy-0.10 support

v0.1.1

01 Mar 10:57
Compare
Choose a tag to compare

This release introduces

Reworked connections system:

  • get rid of Signal trait: events now associated with entities using filter functions (EntityEvent)
  • it is possible to connect from any event to any handler (not only entity-based)
  • get rid of connect! macro (use run! instead)
  • on:event accepts closures or handlers (closures wrapped with run! macro)
  • all connections may be done outside widgets
  • see Connections README section and example

Reworked Elements system param

  • make Elements act like Commands-like cheap readonly system param
  • index elements with id to Entity, respect index in Elements.select()
  • move elements invalidation to separate system
  • order invalidate/ess-apply/fix-text-height systems
  • see Modifying UI README section and party-editor example