Skip to content

Commit

Permalink
[fix] 修复生成python代码中类型全名中首个namespace名与后续名字之间没有_分割线的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
pirunxi committed Mar 24, 2024
1 parent 3391fe5 commit 59e034c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Luban.Core/Utils/TypeUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public static string MakeGoFullName(string module, string name)

public static string MakePyFullName(string module, string name)
{
return module.Replace('.', '_') + name;
return MakeFullName(module, name).Replace('.', '_');
}

public static string MakeGDScriptFullName(string module, string name)
Expand Down

0 comments on commit 59e034c

Please sign in to comment.