silphius/app/ecs/components/helpers/vector-2d.js

8 lines
156 B
JavaScript
Raw Normal View History

2024-06-22 12:12:13 -05:00
export default (type, {x = 0, y = 0} = {}) => ({
2024-06-14 12:05:02 -05:00
type: 'object',
properties: {
2024-06-22 12:12:13 -05:00
x: {defaultValue: x, type},
y: {defaultValue: y, type},
2024-06-14 12:05:02 -05:00
},
});