]> git.r.bdr.sh - rbdr/lissajous/blob - lib/components/up.js
Adjust the frequency
[rbdr/lissajous] / lib / components / up.js
1 import { Component } from '@serpentity/serpentity';
2
3 export default class Up extends Component {
4 constructor(config) {
5
6 super(config);
7
8 this.x = this.x || 0;
9 this.y = this.y || 1;
10 this.z = this.z || 0;
11 }
12 };