]> git.r.bdr.sh - rbdr/serpentity-lib/blame - components/velocity/index.js
Transfer components to lib repo
[rbdr/serpentity-lib] / components / velocity / index.js
CommitLineData
582cea2a
BB
1import { Component } from '@serpentity/serpentity';
2
3/*
4 * Velocity component, stores the components of a velocity vector
5 * Public members:
6 * -x <Number> // the x component of velocity vector
7 * -y <Number> // the y component of velocity vector
8 * -z <Number> // the z component of velocity vector
9 */
10module export class Velocity extends Component {
11 constructor(config) {
12
13 super(config)
14
15 this.x = this.x || 0;
16 this.y = this.y || 0;
17 this.z = this.z || 0;
18 }
19};