Merge branch 'master' of https://github.com/Withaust/FlaxEngine into Withaust-master
This commit is contained in:
@@ -1239,7 +1239,7 @@ namespace Flax.Build.Bindings
|
|||||||
throw new Exception($"Class {classInfo.Name} cannot implement interface {interfaceInfo.Name} because it requires ScriptingObject as a base class.");
|
throw new Exception($"Class {classInfo.Name} cannot implement interface {interfaceInfo.Name} because it requires ScriptingObject as a base class.");
|
||||||
|
|
||||||
contents.AppendLine();
|
contents.AppendLine();
|
||||||
if (functionInfo.Comment.Length != 0)
|
if (functionInfo.Comment != null && functionInfo.Comment.Length != 0)
|
||||||
contents.Append(indent).AppendLine("/// <inheritdoc />");
|
contents.Append(indent).AppendLine("/// <inheritdoc />");
|
||||||
GenerateCSharpAttributes(buildData, contents, indent, classInfo, functionInfo.Attributes, null, false, useUnmanaged);
|
GenerateCSharpAttributes(buildData, contents, indent, classInfo, functionInfo.Attributes, null, false, useUnmanaged);
|
||||||
contents.Append(indent).Append(GenerateCSharpAccessLevel(functionInfo.Access));
|
contents.Append(indent).Append(GenerateCSharpAccessLevel(functionInfo.Access));
|
||||||
|
|||||||
Reference in New Issue
Block a user