UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

14 lines 470 B
/** * Produces a diagram of behavior tree in DOT format, useful for debugging and exploration of complex trees * * @see https://en.wikipedia.org/wiki/DOT_(graph_description_language) * * @author Alex Goldring * @copyright Company Named Limited (c) 2025 * * @param {Behavior} behavior * @returns {string} */ export function behavior_to_dot(behavior: Behavior<any>): string; import { Behavior } from "./Behavior.js"; //# sourceMappingURL=behavior_to_dot.d.ts.map