insert<T> method
Queues inserting component of type T onto entity.
Implementation
EntityCommands insert<T>(T component) {
_commands.insert<T>(entity, component);
return this;
}
Queues inserting component of type T onto entity.
EntityCommands insert<T>(T component) {
_commands.insert<T>(entity, component);
return this;
}