@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
text/typescript
import { Ticker } from 'pixi.js';
import { RotateTickerProps } from '../../types/ticker/RotateTickerProps.mjs';
import { T as TickerBase } from '../../TickerBase-DKYzbzro.mjs';
import '../../interface/TickerProgrationType.mjs';
import '../../types/StorageElementType.mjs';
import '../../types/TickerIdType.mjs';
/**
* 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 };