Entitas  0.35.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
GroupExtension.cs
1 namespace Entitas {
2 
3  public static class GroupExtension {
4 
5  /// Creates an EntityCollector for this group.
7  this Group group,
8  GroupEventType eventType = GroupEventType.OnEntityAdded) {
9  return new EntityCollector(group, eventType);
10  }
11  }
12 }
static EntityCollector CreateCollector(this Group group, GroupEventType eventType=GroupEventType.OnEntityAdded)
Creates an EntityCollector for this group.
GroupChanged OnEntityAdded
Occurs when an entity gets added.
Definition: Group.cs:21