Skip to content

Commit

Permalink
Merge pull request #16746 from PJB3005/18-02-16-fix-nodepath-pascalcase
Browse files Browse the repository at this point in the history
Makes NodePath and RID follow PascalCase in C#.
  • Loading branch information
neikeq authored Feb 18, 2018
2 parents f4dcfa3 + b1a8137 commit e380a98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/mono/editor/bindings_generator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e380a98

Please sign in to comment.