新增蓝图接口

This commit is contained in:
boyce
2026-03-05 13:03:23 +08:00
parent 6f87cda07f
commit e508c69fa0

View File

@@ -579,3 +579,11 @@ func (en *BaseExecNode) GetBlueprintModule() IBlueprintModule {
return en.gr.IBlueprintModule
}
func (en *BaseExecNode) GetAndCreateReturnPort() IPort{
if en.gr == nil {
return nil
}
return en.gr.GetAndCreateReturnPort()
}