lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
9 lines • 414 B
JavaScript
import { gameGraphChildDefaults, gameGraphChildSchema } from "./IGameGraphChild";
import { defaultMethod } from "./utils/DefaultMethod";
import { extendDefaults } from "./utils/Defaults";
export const spawnNodeSchema = {
...gameGraphChildSchema,
spawn: Function
};
export const spawnNodeDefaults = extendDefaults([gameGraphChildDefaults], { spawn: defaultMethod() });
//# sourceMappingURL=ISpawnNode.js.map