aboutsummaryrefslogtreecommitdiff
path: root/modules/gdscript/gd_editor.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2017-10-24 18:59:26 +0200
committerGitHub2017-10-24 18:59:26 +0200
commit847c55bcb11337bd2d386347b299863f82a1be02 (patch)
treea3fd3327204845f108886419f6e28f6b5bc60b60 /modules/gdscript/gd_editor.cpp
parentb44fb58c90e4c0f55da7b3b3292a7891d053e339 (diff)
parente218a13a64d417505ba8ca0abb79dddfb943f2c7 (diff)
downloadgodot-847c55bcb11337bd2d386347b299863f82a1be02.tar.gz
godot-847c55bcb11337bd2d386347b299863f82a1be02.tar.zst
godot-847c55bcb11337bd2d386347b299863f82a1be02.zip
Diffstat (limited to 'modules/gdscript/gd_editor.cpp')
-rw-r--r--modules/gdscript/gd_editor.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/gdscript/gd_editor.cpp b/modules/gdscript/gd_editor.cpp
index 9d3770335..bcb998aee 100644
--- a/modules/gdscript/gd_editor.cpp
+++ b/modules/gdscript/gd_editor.cpp
@@ -131,6 +131,11 @@ bool GDScriptLanguage::has_named_classes() const {
return false;
}
+bool GDScriptLanguage::supports_builtin_mode() const {
+
+ return true;
+}
+
int GDScriptLanguage::find_function(const String &p_function, const String &p_code) const {
GDTokenizerText tokenizer;