silphius/app/ecs/components/light.js

9 lines
204 B
JavaScript
Raw Normal View History

2024-07-17 05:07:50 -05:00
import Component from '@/ecs/component.js';
export default class Light extends Component {
static properties = {
2024-07-27 15:28:08 -05:00
brightness: {defaultValue: 1, type: 'float32'},
2024-07-17 05:07:50 -05:00
radius: {type: 'uint8'},
};
}