sprunk-engine
    Preparing search index...

    A unique game engine component responsible for rendering the game using WebGPU. This is the main component used to render the game so it has a lot of responsibilities (camera, lifecycle, webgpu resources, etc). For these reasons, it acts like a facade for the WebGPU resources and delegate some responsibilities to the WebGPUResourceManager.

    Hierarchy (View Summary)

    Implements

    Index

    Constructors

    Properties

    attachedEngine: null | GameEngineWindow = null
    camera: null | Camera = null

    The camera to use for rendering.

    onError: Event<Error> = ...

    Event that is triggered when an asynchronous error occurs.

    onRenderingReady: Event<void> = ...

    Event that is triggered when rendering become ready (context and device are available).

    Accessors

    Methods

    • Creates a render pipeline asynchronously.

      Parameters

      • vertexWGSLShader: string

        The vertex shader code in WGSL.

      • fragmentWGSLShader: string

        The fragment shader code in WGSL.

      • primitiveState: GPUPrimitiveState

        The primitive state configuration.

      • bindGroupLayouts: Iterable<null | GPUBindGroupLayout>

        The bind group layouts for the pipeline.

      • Optionalbuffers: Iterable<null | GPUVertexBufferLayout, any, any>

        The vertex buffer layouts (optional).

      • OptionaltargetBlend: GPUBlendState

        The blend state for the pipeline (optional).

      Returns Promise<GPURenderPipeline>

      The created render pipeline.