1 2 3 4 5 6 7 8 9 10 11 12 13 14
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; } };