allOf method

void allOf(
  1. List<Type> componentTypes
)

Modifies the aspect in a way that an entity must possess all of the specified components.

Implementation

void allOf(List<Type> componentTypes) {
  _updateBitMask(_all, componentTypes);
}