Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 799 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 799 Bytes

behavior java运行库

// 初始化 
// BehaviorLoaderImplments由工具生成
org.gof.behaviac.Workspace.Instance.SetFilePath("xml导出目录/");
org.gof.behaviac.AgentMeta.SetBehaviorLoader(new loader.BehaviorLoaderImplments());
org.gof.behaviac.Workspace.Instance.TryInit();
...

// 使用
// TestAgent由根据生成
TestAgent agent = new TestAgent();
agent.btsetcurrent("TestTree1");
agent.btexec();
...

// 热更新(线程安全)
// 自动卸载已经变化的xml对应的行为树,已经创建的不受影响
org.gof.behaviac.Workspace.Instance.UnloadChangedXmls();