import { Component } from '@serpentity/serpentity'; export default class Color extends Component { constructor(config) { super(config); this.r = Math.random(); this.g = Math.random(); this.b = Math.random(); this.a = 1.0; } };