UNPKG

lingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

12 lines (11 loc) 515 B
import ISpawnNode from "../interface/ISpawnNode"; import GameGraphChild from "./GameGraphChild"; export default class SpawnNode extends GameGraphChild implements ISpawnNode { static componentName: string; static defaults: Partial<import("../interface/utils/Defaults").default<ISpawnNode>>; static schema: Required<import("../interface/utils/extractProps").ExtractProps<ISpawnNode>>; static includeKeys: string[]; private cache?; patch: Map<string, Record<string, any>>; spawn(): void; }