pixi-jsType aliases
Type Alias: WRAP\_MODE
> WRAP_MODE = "clamp-to-edge" | "repeat" | "mirror-repeat"
Defined in: node_modules/pixi.js/lib/rendering/renderers/shared/texture/const.d.ts:49
The wrap modes that are supported by pixi.
The wrap mode affects the default wrapping mode of future operations.
clamp-to-edgeis the default mode, which clamps the texture coordinates to the edge of the texture.repeatallows the texture to repeat in both u and v directions.mirror-repeatallows the texture to repeat in both u and v directions, but mirrors the texture on every other repeat.