使用这个库:https ://github.com/hurik/impact-astar-for-entities
我可以获得打印路径,但是一旦我在我的“怪物”实体中执行 followPath,精灵就会消失?!
我可能做错了什么?
update: function() {
// Update it every 2 seconds
if(this.pathTimer.delta() > 0) {
// Get the path to the player
this.getPath(416, 302, true, ['EntityMonster'], []);
this.pathTimer.reset();
}
// Walk the path
this.followPath(this.speed);
this.parent();
},