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.

Fix typos

+4 -4
+2 -2
Cargo.lock
··· 2777 2777 2778 2778 [[package]] 2779 2779 name = "immediate_stats" 2780 - version = "0.3.1" 2780 + version = "0.3.2" 2781 2781 dependencies = [ 2782 2782 "bevy_app", 2783 2783 "bevy_auto_plugin", ··· 2788 2788 2789 2789 [[package]] 2790 2790 name = "immediate_stats_macros" 2791 - version = "0.3.1" 2791 + version = "0.3.2" 2792 2792 dependencies = [ 2793 2793 "darling 0.23.0", 2794 2794 "proc-macro-error",
+1 -1
examples/immediate_stats/decaying_speed.rs
··· 79 79 } 80 80 } 81 81 82 - /// Updates the UI to match thw world state. 82 + /// Updates the UI to match the world state. 83 83 fn update_ui( 84 84 mut ui: Single<&mut Text>, 85 85 target: Single<&MovementSpeed>,
+1 -1
examples/immediate_stats/decaying_speed_auto_plugin.rs
··· 83 83 } 84 84 } 85 85 86 - /// Updates the UI to match thw world state. 86 + /// Updates the UI to match the world state. 87 87 #[auto_system(plugin = DecayingSpeedPlugin, schedule = PostUpdate)] 88 88 fn update_ui( 89 89 mut ui: Single<&mut Text>,