UNPKG

@drincs/pixi-vn

Version:

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

36 lines (33 loc) 772 B
import { TickerProgrationType } from '../../interface/TickerProgrationType.mjs'; type MoveTickerProps = { /** * The speed of the movement * @default 1 */ speed?: number | { x: number; y: number; }; /** * The destination of the movement */ destination: { y: number; x: number; }; /** * The progression of the speed */ speedProgression?: TickerProgrationType; /** * The tag to remove after the fade is done * @default [] */ tagToRemoveAfter?: string[] | string; /** * If true, the effect only starts if the canvas element have a texture * @default false */ startOnlyIfHaveTexture?: boolean; }; export type { MoveTickerProps };