9 lines
189 B
TypeScript
9 lines
189 B
TypeScript
|
|
/**
|
||
|
|
* Behavior Tree Constants
|
||
|
|
* 行为树常量
|
||
|
|
*/
|
||
|
|
|
||
|
|
// Asset type constant for behavior tree
|
||
|
|
// 行为树资产类型常量
|
||
|
|
export const BehaviorTreeAssetType = 'behaviortree' as const;
|