An experimental, status effects-as-entities system for Bevy.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Switch back to crates.io version of Immediate Stats.

+5 -3
+4
Cargo.lock
··· 2778 2778 [[package]] 2779 2779 name = "immediate_stats" 2780 2780 version = "0.3.2" 2781 + source = "registry+https://github.com/rust-lang/crates.io-index" 2782 + checksum = "ff184cabf274770f2fda124551fc191bb164ac4600c62aad85386626a668eac2" 2781 2783 dependencies = [ 2782 2784 "bevy_app", 2783 2785 "bevy_auto_plugin", ··· 2789 2791 [[package]] 2790 2792 name = "immediate_stats_macros" 2791 2793 version = "0.3.2" 2794 + source = "registry+https://github.com/rust-lang/crates.io-index" 2795 + checksum = "69ffebc1448df85d97343a8d36aa5ce7b5c283c1934ff24f5a8accf47bbb5c3d" 2792 2796 dependencies = [ 2793 2797 "darling 0.23.0", 2794 2798 "proc-macro-error",
+1 -3
Cargo.toml
··· 28 28 29 29 [dev-dependencies] 30 30 bevy = "0.17" 31 - immediate_stats = { path = "../immediate_stats/immediate_stats", features = [ 32 - "bevy_auto_plugin", 33 - ] } 31 + immediate_stats = { version = "0.3.2", features = ["bevy_auto_plugin"] } 34 32 bevy_auto_plugin = { version = "0.8" } 35 33 36 34 [lints.rust]