dino-ge
    Preparing search index...

    Class defaultAbstract

    Base class for all systems in the Entity Component System. Systems contain the logic that processes entities with specific components.

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    Methods

    • Called at a fixed interval for physics and consistent logic.

      Parameters

      • entities: Set<default>

        The set of entities to process.

      • fixedDelta: number

        The fixed time step in seconds.

      Returns void

    • Called every frame during the main update loop.

      Parameters

      • entities: Set<default>

        The set of entities to process.

      • OptionaldeltaTime: number

        Time passed since the last frame in seconds.

      • Optionaldebug: boolean

        Whether to draw debug information.

      Returns void