修复行为树复制参数传递错误

This commit is contained in:
2026-04-13 15:33:46 +08:00
parent 7c71a38f68
commit 50c1cc5bf2

View File

@@ -103,7 +103,7 @@ export default defineComponent({
};
const handleCopy = (item: BehaviorTree) => {
copyTree({ id: item.id }).then(r => {
copyTree(item).then(r => {
if (r.code === 200) {
loadTress();
}