pixi-color-effects
TypeScript icon, indicating that this package has built-in type declarations

1.3.0 • Public • Published

Pixi Color Effects

A various color Matrix filters for pixi.js with TON of presets!

DEMO

img

Install

# npm
npm install pixi-color-effects

# yarn
yarn add pixi-color-effects

Usage

import { Tint } from "pixi-color-effects";

const app = new Application({
  // **
});

let filter = new Tint();
app.stage.filters = [filter];

//  change value
let num = 0;
app.ticker.add((delta) => {
  num += 0.1;
  filter.value = Math.sin(num) * 1;
});

Use Preset

import { Preset } from "pixi-color-effects";
let filter = new Preset("aladin");
app.stage.filters = [filter];

Methods

Methods usage

let filter = new Tint();

//  use a method
filter.getEffectConfig();
Method Argument Description
getEffectConfig Get the filter's configuration object

License

This project is licensed under the MIT License.

Readme

Keywords

Package Sidebar

Install

npm i pixi-color-effects

Weekly Downloads

28

Version

1.3.0

License

MIT

Unpacked Size

372 kB

Total Files

50

Last publish

Collaborators

  • buff2017