LogoPixi’VN
pixi-jsType aliases

Type Alias: PatternRepetition

> PatternRepetition = "repeat" | "repeat-x" | "repeat-y" | "no-repeat"

Defined in: node_modules/pixi.js/lib/scene/graphics/shared/fill/FillPattern.d.ts:13

Defines the repetition modes for fill patterns.

  • repeat: The pattern repeats in both directions.
  • repeat-x: The pattern repeats horizontally only.
  • repeat-y: The pattern repeats vertically only.
  • no-repeat: The pattern does not repeat.

Standard