MCPcopy Create free account
hub / github.com/esengine/esengine / RenderSystem

Class RenderSystem

packages/core/tests/ECS/EntitySystemDI.test.ts:188–198  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

186 }
187
188 @Injectable()
189 @ECSSystem('Render', { updateOrder: 20 })
190 class RenderSystem extends EntitySystem implements IService {
191 @InjectProperty(PhysicsSystem)
192 public physics!: PhysicsSystem;
193
194 constructor() {
195 super(Matcher.empty().all(Transform));
196 }
197 override dispose() {}
198 }
199
200 const systems = scene.registerSystems([
201 CollisionSystem,

Callers

nothing calls this directly

Calls 3

InjectableFunction · 0.90
ECSSystemFunction · 0.90
InjectPropertyFunction · 0.90

Tested by

no test coverage detected