@drincs/pixi-vn-json
Version:
Pixi'VN can be integrated with JSON files to create a visual novel.
12 lines (9 loc) • 308 B
TypeScript
import { ShakeEffectProps, UPDATE_PRIORITY } from '@drincs/pixi-vn';
type PixiVNJsonEffectShake = {
type: "shake";
alias: string;
props: ShakeEffectProps;
priority?: UPDATE_PRIORITY;
};
type PixiVNJsonCanvasEffect = PixiVNJsonEffectShake;
export type { PixiVNJsonCanvasEffect as default };