UNPKG

prendy

Version:

Make games with prerendered backdrops using babylonjs and repond

10 lines (9 loc) 434 B
import { AnyAnimationName, PickupName } from "../../types"; type PlayerAnimationNames = { walking: AnyAnimationName; idle: AnyAnimationName; }; export declare function enableMovement(canMove?: boolean, revertDelay?: number): Promise<void>; export declare function takePickup(pickup: PickupName, toHolding?: boolean): void; export declare function setPlayerAnimations(newAnimationNames: PlayerAnimationNames): void; export {};