UNPKG

@drincs/pixi-vn

Version:

Pixi'VN is a npm package that provides various features for creating visual novels.

28 lines (25 loc) 991 B
import { Ticker } from 'pixi.js'; import { FadeAlphaTickerProps } from '../../types/ticker/FadeAlphaTickerProps.mjs'; import { T as TickerBase } from '../../TickerBase-DKYzbzro.mjs'; import '../../types/StorageElementType.mjs'; import '../../types/TickerIdType.mjs'; /** * A ticker that fades the alpha of the canvas element of the canvas. * This ticker can be used on all canvas elements that extend the {@link Container} class. * @example * ```typescript * let bunny = addImage("bunny1", "https://pixijs.com/assets/eggHead.png") * await bunny.load() * GameWindowManager.addCanvasElement("bunny", bunny); * // ... * const ticker = new FadeAlphaTicker({ * duration: 4, // 4 seconds * type: "hide", * }), * GameWindowManager.addTicker("bunny", ticker) * ``` */ declare class FadeAlphaTicker extends TickerBase<FadeAlphaTickerProps> { fn(ticker: Ticker, args: FadeAlphaTickerProps, tags: string[], tickerId: string): void; } export { FadeAlphaTicker as default };