Releases: jkb0o/belly
Releases · jkb0o/belly
v0.5.0
What's Changed
- Now compatible with bevy 0.13 by @Threadzless in #82
New Contributors
- @Threadzless made their first contribution in #82
Full Changelog: v0.4.1...v0.5.0
v0.4.1
v0.4.0
v0.2.0
v0.1.1
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 (userun!
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 likeCommands
-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 andparty-editor
example