Create a new BasicUVTexturedRenderBehavior with a predetermined descriptor and buffer layout.
The URL of the sprite image (will automatically load the texture in the GPU)
The vertex data (3 floats for position and 2 float for UV coordinates)
The index data (to form triangles)
The vertex shader in WGSL (source code in string). Ensure that the shader has a uniform mat4 mvpMatrix and is compatible with the layout.
The fragment shader in WGSL (source code in string). Ensure that the shader has a texture and sampler and is compatible with the layout.
The sampler configuration
Protected
_bindProtected
_bindProtected
_indexProtected
_indexProtected
_mvpProtected
_pipelineProtected
_renderProtected
_spriteProtected
_vertexProtected
asyncProtected
Called when the rendering is ready (device is available).
Detach this behavior from the GameObject it is attached to.
The GameObject to detach this behavior from.
Protected
observeProtected
Observe a LogicBehavior and call the observer function when the data changes.
Protected
onProtected
onRender the object to the screen. Pipeline and MVP uniform are set by RenderEngine.
The render pass to render to
Like onEnable, but should only be for internal use, so some non-abstact direct behaviors could expose attachedOn to the user.
The GameObject this behavior is attached to.
Protected
tickProtected
Called every frame. Override this method to add custom behavior.
The time in seconds since the last frame.
A RenderBehavior already set up to render a textured object with UV coordinates (GPUBindGroupLayoutDescriptor and GPUVertexBufferLayout are already set up). BindGroupLayout can be used to set up the bind group layout for the texture and sampler.