silphius/app/ecs/components/helpers/vector-2d.js
2024-07-20 05:07:39 -05:00

8 lines
156 B
JavaScript

export default (type, {x = 0, y = 0} = {}) => ({
type: 'object',
properties: {
x: {defaultValue: x, type},
y: {defaultValue: y, type},
},
});