使用此库:https://github.com/hurik/impact-astar-for-entities
我可以获得一条打印路径,但是只要我在“怪物”实体中跟踪路径,精灵就会消失?!
我可能做错了什么?
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();
},