AEntityMultiMapSystem_TState,TKey_.AEntityMultiMapSystem(World,IParallelRunner,int).md
March 19, 2022 ยท View on GitHub
DefaultEcs
DefaultEcs.System.AEntityMultiMapSystem<TState,TKey>
AEntityMultiMapSystem(World, IParallelRunner, int) Constructor
Initialise a new instance of the AEntityMultiMapSystem<TState,TKey> class with the given World.
To create the inner EntityMultiMap<TKey>, WithAttribute and WithoutAttribute attributes will be used.
protected AEntityMultiMapSystem(DefaultEcs.World world, DefaultEcs.Threading.IParallelRunner runner, int minEntityCountByRunnerIndex=0);
Parameters
world World
The World from which to get the Entity instances to process the update.
runner IParallelRunner
The IParallelRunner used to process the update in parallel if not null.
minEntityCountByRunnerIndex System.Int32
The minimum number of Entity per runner index to use the given runner.
Exceptions
System.ArgumentNullException
world is null.