Makes NodePath and RID follow PascalCase in C#.

Fixes #15685
This commit is contained in:
Pieter-Jan Briers 2018-02-16 13:44:48 +01:00
parent 9f590b460e
commit b1a81374d4

View file

@ -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;