Fixed issues in AnimManager.js
This commit is contained in:
parent
3a210d1b60
commit
cb46be0088
@ -5,6 +5,12 @@ class Anim {
|
|||||||
this.reset();
|
this.reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
reset() {
|
||||||
|
this.frame = this.frames[0];
|
||||||
|
this.curFrame = 0;
|
||||||
|
this.curTime = 0;
|
||||||
|
}
|
||||||
|
|
||||||
update(dt) {
|
update(dt) {
|
||||||
const { rate, frames } = this;
|
const { rate, frames } = this;
|
||||||
if ((this.curTime += dt) > rate) {
|
if ((this.curTime += dt) > rate) {
|
||||||
@ -13,20 +19,14 @@ class Anim {
|
|||||||
this.curTime -= rate;
|
this.curTime -= rate;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
reset() {
|
|
||||||
this.frame = this.frames[0];
|
|
||||||
this.curFrame = 0;
|
|
||||||
this.curTime = 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class AnimManager {
|
class AnimManager {
|
||||||
constructor(e) {
|
constructor(e = { x: 0, y: 0 }) {
|
||||||
this.anims = {};
|
this.anims = {};
|
||||||
this.running = false;
|
this.running = false;
|
||||||
this.frameSource = e.frame || e;
|
this.frameSource = e.frame || e;
|
||||||
this.currrent = null;
|
this.current = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
add(name, frames, speed) {
|
add(name, frames, speed) {
|
||||||
@ -42,13 +42,14 @@ class AnimManager {
|
|||||||
const anim = anims[current];
|
const anim = anims[current];
|
||||||
anim.update(dt);
|
anim.update(dt);
|
||||||
|
|
||||||
|
// Sync the tileSprite frame
|
||||||
frameSource.x = anim.frame.x;
|
frameSource.x = anim.frame.x;
|
||||||
frameSource.y = anim.frame.y;
|
frameSource.y = anim.frame.y;
|
||||||
}
|
}
|
||||||
|
|
||||||
play(anim) {
|
play(anim) {
|
||||||
const { current, anims } = this;
|
const { current, anims } = this;
|
||||||
if (anim === current ) {
|
if (anim === current) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.current = anim;
|
this.current = anim;
|
||||||
@ -61,3 +62,4 @@ class AnimManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
module.exports = AnimManager;
|
module.exports = AnimManager;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user