@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
10 lines • 394 B
TypeScript
/**
* 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)
* @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