2019-08-20 17:59:26 +02:00
|
|
|
class Sprite {
|
2020-03-21 17:22:28 +01:00
|
|
|
constructor(texture) {
|
|
|
|
this.texture = texture;
|
|
|
|
this.pos = { x: 0, y: 0 };
|
|
|
|
this.anchor = { x: 0, y: 0 };
|
|
|
|
this.scale = { x: 1, y: 1 };
|
2020-03-22 14:22:52 +01:00
|
|
|
this.pivot = { x: 0, y: 0 };
|
2020-03-21 17:22:28 +01:00
|
|
|
this.rotation = 0;
|
|
|
|
}
|
2019-08-20 17:59:26 +02:00
|
|
|
}
|
2020-02-29 13:45:56 +01:00
|
|
|
module.exports = Sprite;
|