diff options
| author | Rémi Verschelde | 2017-10-24 18:59:26 +0200 |
|---|---|---|
| committer | GitHub | 2017-10-24 18:59:26 +0200 |
| commit | 847c55bcb11337bd2d386347b299863f82a1be02 (patch) | |
| tree | a3fd3327204845f108886419f6e28f6b5bc60b60 /modules/mono/csharp_script.cpp | |
| parent | b44fb58c90e4c0f55da7b3b3292a7891d053e339 (diff) | |
| parent | e218a13a64d417505ba8ca0abb79dddfb943f2c7 (diff) | |
| download | godot-847c55bcb11337bd2d386347b299863f82a1be02.tar.gz godot-847c55bcb11337bd2d386347b299863f82a1be02.tar.zst godot-847c55bcb11337bd2d386347b299863f82a1be02.zip | |
Diffstat (limited to 'modules/mono/csharp_script.cpp')
| -rw-r--r-- | modules/mono/csharp_script.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp index 7143177c3..855f7e967 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -286,11 +286,13 @@ Ref<Script> CSharpLanguage::get_template(const String &p_class_name, const Strin "// }\n" "//}\n"; - script_template = script_template.replace("%BASE_CLASS_NAME%", p_base_class_name).replace("%CLASS_NAME%", p_class_name); + script_template = script_template.replace("%BASE_CLASS_NAME%", p_base_class_name) + .replace("%CLASS_NAME%", p_class_name); Ref<CSharpScript> script; script.instance(); script->set_source_code(script_template); + script->set_name(p_class_name); return script; } @@ -302,7 +304,12 @@ Script *CSharpLanguage::create_script() const { bool CSharpLanguage::has_named_classes() const { - return true; + return false; +} + +bool CSharpLanguage::supports_builtin_mode() const { + + return false; } static String variant_type_to_managed_name(const String &p_var_type_name) { |
