Makes NodePath and RID follow PascalCase in C#.
Fixes #15685
(cherry picked from commit b1a81374d4
)
This commit is contained in:
parent
9f9731da3a
commit
3e6ab9f3d5
|
@ -2365,7 +2365,7 @@ void BindingsGenerator::_populate_builtin_type(TypeInterface &r_itype, Variant::
|
||||||
|
|
||||||
imethod.name = mi.name;
|
imethod.name = mi.name;
|
||||||
imethod.cname = imethod.name;
|
imethod.cname = imethod.name;
|
||||||
imethod.proxy_name = mi.name;
|
imethod.proxy_name = escape_csharp_keyword(snake_to_pascal_case(mi.name));
|
||||||
|
|
||||||
for (int i = 0; i < mi.arguments.size(); i++) {
|
for (int i = 0; i < mi.arguments.size(); i++) {
|
||||||
ArgumentInterface iarg;
|
ArgumentInterface iarg;
|
||||||
|
|
Loading…
Reference in New Issue