lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
8 lines • 358 B
JavaScript
import { gameGraphChildDefaults, gameGraphChildSchema } from "./IGameGraphChild";
import { extendDefaults } from "./utils/Defaults";
export const mathNodeSchema = {
...gameGraphChildSchema,
expression: String
};
export const mathNodeDefaults = extendDefaults([gameGraphChildDefaults], { expression: undefined });
//# sourceMappingURL=IMathNode.js.map