UNPKG

@drincs/pixi-vn

Version:

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

29 lines (26 loc) 1.08 kB
import { Ticker } from 'pixi.js'; import { RotateTickerProps } from '../../types/ticker/RotateTickerProps.js'; import { T as TickerBase } from '../../TickerBase-3rLpDpmb.js'; import '../../interface/TickerProgrationType.js'; import '../../types/StorageElementType.js'; import '../../types/TickerIdType.js'; /** * A ticker that rotates the canvas element of the canvas. For centre rotation, set the anchor of the canvas element to 0.5. * This ticker can be used on all canvas elements that extend the {@link Container} class. * @example * ```typescript * let alien = addImage("alien", 'https://pixijs.com/assets/eggHead.png') * alien.anchor.set(0.5); * GameWindowManager.addCanvasElement("alien", alien); * const ticker = new RotateTicker({ * speed: 0.1, * clockwise: true, * }), * GameWindowManager.addTicker("alien", ticker) * ``` */ declare class RotateTicker extends TickerBase<RotateTickerProps> { fn(ticker: Ticker, args: RotateTickerProps, tags: string[], tickerId: string): void; private speedConvert; } export { RotateTicker as default };