Draw a single texture

绘制单个贴图

实现

构造函数

属性

alpha: number = 1

(Optional) Alpha value.

(可选)透明度。

blendMode: string

(Optional) Blend mode.

(可选)混合模式。

color: number = 0xffffffff

(Optional) Color filter.

(可选)颜色滤镜。

height: number = 1

(Optional) Height of the texture.

(可选)纹理的高度。

matrix: Matrix

(Optional) Matrix information for transformation.

(可选)矩阵信息,用于变换。

percent: boolean = true

Whether the position and size are percentages

位置和大小是否是百分比

texture: Texture

The texture to be drawn.

要绘制的纹理。

uv: number[] = null

(Optional) UV coordinates.

(可选)UV坐标。

width: number = 1

(Optional) Width of the texture.

(可选)纹理的宽度。

x: number = 0

(Optional) X-axis offset.

(可选)X轴偏移量。

y: number = 0

(Optional) Y-axis offset.

(可选)Y轴偏移量。

ID: string = "DrawTexture"

Identifier for the DrawTextureCmd

绘制单个贴图命令的标识符

访问器

方法

  • 参数

    • context: Context

      The rendering context.

    • gx: number

      Starting X coordinate.

    • gy: number

      Starting Y coordinate.

    返回 void

    Execute the draw texture command.

    执行绘制纹理命令。

  • 参数

    • texture: Texture

      The texture to be drawn

    • 可选x: number

      X-axis offset

    • 可选y: number

      Y-axis offset

    • 可选width: number

      Width of the texture

    • 可选height: number

      Height of the texture

    • 可选matrix: Matrix

      Matrix information for transformation

    • 可选alpha: number

      Alpha value

    • 可选color: string

      Color filter

    • 可选blendMode: string

      Blend mode

    • 可选uv: number[]

      UV coordinates

    • 可选percent: boolean

    返回 DrawTextureCmd

    DrawTextureCmd instance

    Create a DrawTextureCmd instance

    创建一个绘制单个贴图实例