blob: ffc5cb65ebfad6e97880fc6c11ea28a7ae2290f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import { Component } from '@serpentity/serpentity';
/*
* Acceleration component, stores the components of a acceleration vector
* Public members:
* -x <Number> // the x component of acceleration vector
* -y <Number> // the y component of acceleration vector
* -z <Number> // the z component of acceleration vector
*/
export default class Acceleration extends Component {
constructor(config) {
super(config)
this.x = this.x || 0;
this.y = this.y || 0;
this.z = this.z || 0;
}
};
|