diff options
author | Ignacio Etcheverry <neikeq@users.noreply.github.com> | 2018-02-18 19:51:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-18 19:51:33 +0100 |
commit | e380a98109f72d4e39f1f069c3cf35e408925a8b (patch) | |
tree | f0195f03f273109828d33af2f46020b6d139e9fc | |
parent | f4dcfa38f72751a26877d63a15a58b03f63a21b4 (diff) | |
parent | b1a81374d4e2ac6150a95c3ce9af8d46720b717e (diff) |
Merge pull request #16746 from PJB3005/18-02-16-fix-nodepath-pascalcase
Makes NodePath and RID follow PascalCase in C#.
-rw-r--r-- | modules/mono/editor/bindings_generator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/bindings_generator.cpp b/modules/mono/editor/bindings_generator.cpp index 70f1b198a2..952e033565 100644 --- a/modules/mono/editor/bindings_generator.cpp +++ b/modules/mono/editor/bindings_generator.cpp @@ -2366,7 +2366,7 @@ void BindingsGenerator::_populate_builtin_type(TypeInterface &r_itype, Variant:: imethod.name = mi.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++) { ArgumentInterface iarg; |