Support static methods in C# bindings generator
This commit is contained in:
parent
9162f27836
commit
83e0e13f4a
2 changed files with 43 additions and 18 deletions
|
|
@ -136,6 +136,11 @@ class BindingsGenerator {
|
|||
*/
|
||||
bool is_vararg = false;
|
||||
|
||||
/**
|
||||
* Determines if the method is static.
|
||||
*/
|
||||
bool is_static = false;
|
||||
|
||||
/**
|
||||
* Virtual methods ("virtual" as defined by the Godot API) are methods that by default do nothing,
|
||||
* but can be overridden by the user to add custom functionality.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue