新增AI-GOAP目标导向计划与ASTAR寻路配合使用

This commit is contained in:
yhh
2020-10-29 11:22:01 +08:00
parent 85cc4b4ecc
commit 1a78dada61
17 changed files with 3045 additions and 19 deletions

View File

@@ -0,0 +1,9 @@
module es {
export class NumberExtension {
public static toNumber(value){
if (value == undefined) return 0;
return Number(value);
}
}
}