Skip to content

Commit

Permalink
Organize a doc sentence about Bevy
Browse files Browse the repository at this point in the history
  • Loading branch information
temeddix committed Jun 30, 2024
1 parent 967aaed commit e38af7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion documentation/docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ rinf = { version = "0.0.0", features = ["feature-name"] }

- `rt-multi-thread`: Starts a worker thread for each CPU core available on the system within the `tokio` runtime by enabling its `rt-multi-thread` feature. By default, the `tokio` runtime uses only one thread. Enabling this feature allows the `tokio` runtime to utilize all the cores on your computer. This feature does not affect applications on the web platform.
- `show-backtrace`: Prints the full backtrace in the CLI when a panic occurs in debug mode. In general, backtrace is not very helpful when debugging async apps, so consider using [`tracing`](https://crates.io/crates/tracing) for logging purposes. Note that this feature does not affect debugging on the web platform.
- `bevy`: Adds the trait `Event` of `bevy_ecs` through a derive macro for DartSignal. This allows bevy's Entity Component System to be used to listen for events from `Dart`.
- `bevy`: Implements the `Event` trait from `bevy_ecs` for `DartSignal`, allowing Bevy's entity component system to listen for events from Dart.

0 comments on commit e38af7e

Please sign in to comment.