pixi-jsType aliases
Type Alias: SCALE\_MODE
> SCALE_MODE = "nearest" | "linear"
Defined in: node_modules/pixi.js/lib/rendering/renderers/shared/texture/const.d.ts:75
The scale modes that are supported by pixi.
The scale mode affects the default scaling mode of future operations. It can be re-assigned to either LINEAR or NEAREST, depending upon suitability.
nearestis a pixelating scaling mode, which does not interpolate pixels.linearis a smooth scaling mode, which interpolates pixels for smoother results.