UNPKG

lingo3d

Version:

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

8 lines 346 B
import { gameGraphChildDefaults, gameGraphChildSchema } from "./IGameGraphChild"; import { extendDefaults } from "./utils/Defaults"; export const numberNodeSchema = { ...gameGraphChildSchema, value: Number }; export const numberNodeDefaults = extendDefaults([gameGraphChildDefaults], { value: 0 }); //# sourceMappingURL=INumberNode.js.map