Small World Engine API Reference - v0.76.20
    Preparing search index...

    Class SpriteMaterial

    Material for rendering 2D sprites.

    Hierarchy (View Summary)

    Index
    _renderManifest: RenderManifest | undefined = undefined

    Cached render manifest to avoid frequent allocations.

    color: Color = Color.WHITE

    The base color of the material.

    cullMode: CullMode = CullMode.DEFAULT

    The culling mode for this material. Defaults to BACK.

    depthTest: boolean = true

    Whether the material performs depth testing. Defaults to true.

    depthWrite: boolean = true

    Whether the material writes to the depth buffer. Defaults to true.

    texture: Texture | undefined = undefined

    The texture to display on the sprite.

    transparent: boolean = true

    Whether the sprite is transparent. Defaults to true.

    type: string

    The type of the material.

    uuid: string = ...

    The unique identifier of the material.

    • Helper to synchronize texture offset and repeat from a given texture.

      Parameters

      • tex:
            | { offset: { x: number; y: number }; repeat: { x: number; y: number } }
            | undefined

      Returns void