pub trait TaskFactory {
// Required method
fn create_task(&self, cmd: &mut CommandBuffer) -> Entity;
}Expand description
Implemented by all nodes of a TaskGraph. Has a blanket impl that should work for most
TaskComponents.
pub trait TaskFactory {
// Required method
fn create_task(&self, cmd: &mut CommandBuffer) -> Entity;
}Implemented by all nodes of a TaskGraph. Has a blanket impl that should work for most
TaskComponents.