@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
16 lines (13 loc) • 495 B
TypeScript
import { UPDATE_PRIORITY } from 'pixi.js';
import { ShakeEffectProps } from '../../interface/canvas/effect-props.js';
import '../../interface/TickerProgrationType.js';
/**
* Shake the canvas element.
* If there is a/more ticker(s) with the same alias, then the ticker(s) is/are paused.
* @param alias
* @param props
* @param priority
* @returns
*/
declare function shakeEffect(alias: string, props?: ShakeEffectProps, priority?: UPDATE_PRIORITY): Promise<void>;
export { shakeEffect };