Batch and Bulk
Batch and Bulk, executing batched commands on all your entities.
Reserve
world.EnsureCapacity<Dwarf, Position, Velocity>(1_000_000);world.EnsureCapacity<Dwarf, Position, Velocity>(1_000_000);
for(var index = 0; index < 1_000_000; index++){
var dwarf = world.Create(signature);
}Create
world.Create(1_000_000, new Dwarf(), RandomPosition(), RandomVelocity());Change
Last updated