lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
20 lines • 513 B
JavaScript
import { gameGraphChildDefaults, gameGraphChildSchema } from "./IGameGraphChild";
import { extendDefaults } from "./utils/Defaults";
export const projectionNodeSchema = {
...gameGraphChildSchema,
x: Number,
y: Number,
distance: Number,
outX: Number,
outY: Number,
outZ: Number
};
export const projectionNodeDefaults = extendDefaults([gameGraphChildDefaults], {
x: 0,
y: 0,
distance: 500,
outX: 0,
outY: 0,
outZ: 0
});
//# sourceMappingURL=IProjectionNode.js.map