
* Renamed add_resource to insert_resource * Changed usage of add_resource to insert_resource * Renamed add_thread_local_resource
11 lines
307 B
Rust
11 lines
307 B
Rust
use bevy::prelude::*;
|
|
|
|
/// This example illustrates how to customize the thread pool used internally (e.g. to only use a
|
|
/// certain number of threads).
|
|
fn main() {
|
|
App::build()
|
|
.insert_resource(DefaultTaskPoolOptions::with_num_threads(4))
|
|
.add_plugins(DefaultPlugins)
|
|
.run();
|
|
}
|