sprunk-engine
    Preparing search index...

    A RenderBehavior that renders a mesh with a texture. Supports both traditional triangle indices and N-gon faces.

    Hierarchy (View Summary)

    Index

    Constructors

    • Create a new MeshRenderBehavior.

      Parameters

      • meshData: MeshData

        The mesh data (vertices and indices/faces generated for example, by the ObjLoader)

      • textureImageUrl: RequestInfo | URL

        The URL of the texture image (will automatically load the texture in the GPU)

      • vertexWGSLShader: string

        The vertex shader in WGSL (source code in string). Ensure that the shader has a uniform mat4 mvpMatrix and is compatible with the layout.

      • fragmentWGSLShader: string

        The fragment shader in WGSL (source code in string). Ensure that the shader has a texture and sampler and is compatible with the layout.

      • sampler: GPUSamplerDescriptor = ...

        Sampler configuration, by default : Not repeat with linear filter

      Returns MeshRenderBehavior

    Properties

    _bindGroup: null | GPUBindGroup = null
    _bindGroupLayouts: null | GPUBindGroupLayout[] = null
    _indexBuffer: null | GPUBuffer = null
    _indexData: Uint16Array
    _mvpUniformBuffer: null | GPUBuffer = null
    _pipeline: null | GPURenderPipeline = null
    _renderEngine: Renderer
    _spriteTexture: null | GPUTexture = null
    _vertexBuffer: null | GPUBuffer = null

    Accessors

    Methods

    • Protected

      Observe a LogicBehavior and call the observer function when the data changes.

      Type Parameters

      Parameters

      • BehaviorClass: new (...args: any[]) => T

        The specific LogicBehavior class type to observe.

      • observer: (data: U) => void

        The function to call when the data changes.

      Returns void

    • Like onEnable, but should only be for internal use, so some non-abstact direct behaviors could expose attachedOn to the user.

      Parameters

      • attachedOn: GameObject

        The GameObject this behavior is attached to.

      Returns void

      Error if the behavior is already attached to a GameObject.

    • Protected

      Called every frame. Override this method to add custom behavior.

      Parameters

      • _deltaTime: number

        The time in seconds since the last frame.

        • This method should not be called directly except by the GameEngineWindowComponent.

      Returns void