removeSystem<S extends SceneSystem<T>> method

E removeSystem<S extends SceneSystem<T>>()

Removes the system of type S. No-op if absent.

Implementation

E removeSystem<S extends SceneSystem<T>>() {
  final c = getSystem<S>();
  if (c != null) _removeSceneSystemInstance(c);
  return self;
}