UNPKG

lingo3d

Version:

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

10 lines (9 loc) 456 B
import INumberNode from "../interface/INumberNode"; import GameGraphChild from "./GameGraphChild"; export default class NumberNode extends GameGraphChild implements INumberNode { static componentName: string; static defaults: Partial<import("../interface/utils/Defaults").default<INumberNode>>; static schema: Required<import("../interface/utils/extractProps").ExtractProps<INumberNode>>; static includeKeys: string[]; value: number; }