Crate bevy_command_non_send
source ·Expand description
This is a small utility library that enables manipulating non-Send
resources using [Commands
] in Bevy.
You can use this library by importing CommandsExt
and calling all of its methods on [Commands
], or you can manually call [Commands::add
].
Traits§
- Extensions to [
Commands
] that allow you to callinit_non_send_resource
,insert_non_send_resource
, andremove_non_send_resource
.