dimforge / rapier.rs

Official website for the Rapier physics engine.
https://rapier.rs
17 stars 48 forks source link

bevy add_plugin and add_startup_system deprecated #72

Closed jaycuse closed 5 months ago

jaycuse commented 9 months ago

Was going through the doc to run example code for bevy plugin and noticed some deprecated calls.

From the doc: add_plugin , deprecated as of 0.11.0. use add_plugins instead. add_startup_system, deprecated as of 0.11.0, use add_systems(Startup, your_system).

I'll create a PR for this since it's a simple enough update.