add: dissolve scene / nuget feed source

This commit is contained in:
h z
2025-02-12 23:37:50 +00:00
parent 9448715ad0
commit 9ced9b356f
2 changed files with 24 additions and 7 deletions

View File

@@ -85,9 +85,9 @@ public class GenerateProxyNodesTask : Task
.AppendLine($" public override {methodReturnType} {methodName}({methodArgs})")
.AppendLine(" {");
if(methodReturnType=="void")
sbx.AppendLine($" base.{methodName}({paramNames});");
sbx.AppendLine($" base.{methodName}({paramNames});");
else
sbx.AppendLine($" return base.{methodName}({paramNames});");
sbx.AppendLine($" return base.{methodName}({paramNames});");
sbx.AppendLine(" }");
}
sbx