hasSystem<S extends SceneSystem<T>> method

bool hasSystem<S extends SceneSystem<T>>()

Returns true if a system of type S is currently registered.

Implementation

bool hasSystem<S extends SceneSystem<T>>() => _systems.any((s) => s is S);