cocos creator 数组_cocos creator二维数组A*寻路
寻路的步类var AStarStep = cc.Class({properties: () => ({g: {default: 0,type: cc.Integer},h: {default: 0,type: cc.Integer},f: {get: function() {return this.g + this.h;}},position: {default: new cc.Vec2()...