UNPKG

dcl-npc-toolkit

Version:

A collection of tools for creating Non-Player-Characters (NPCs). These are capable of having conversations with the player, and play different animations.

9 lines (8 loc) 778 B
import { activate, stopWalking, followPath, create, createFromEntity, handleWalkAway, playAnimation, showDebug, getData, changeIdleAnim, talkBubble, createDialogWindow, openDialogWindow, closeDialogWindow } from "./npc"; import { talk } from "./dialog"; import { Dialog, NPCPathType, NPCType } from "./types"; import { NpcUtilsUi } from './ui'; import { closeBubble, closeBubbleEndAll } from "./bubble"; export { activate, stopWalking, followPath, create, createFromEntity, handleWalkAway, playAnimation, showDebug, talk, Dialog, getData, NPCPathType, NPCType, changeIdleAnim, talkBubble, closeBubble, closeBubbleEndAll, createDialogWindow, openDialogWindow, closeDialogWindow, NpcUtilsUi }; export declare const debugLabel: string; export { Paths, paths } from './utils/path';