diff options
| author | Rémi Verschelde | 2018-05-17 09:36:55 +0200 |
|---|---|---|
| committer | GitHub | 2018-05-17 09:36:55 +0200 |
| commit | b0649d2718f48c812e29884c633a823b1cb78571 (patch) | |
| tree | af387da3148b4ac5f6b287a2e9a8aca36d718f41 /modules/gdscript | |
| parent | 5e20a229eb347058800d00b29ba63bb809aedca0 (diff) | |
| parent | 825d49dfe24ca4ec39aa13dc134300180a3ff641 (diff) | |
| download | godot-b0649d2718f48c812e29884c633a823b1cb78571.tar.gz godot-b0649d2718f48c812e29884c633a823b1cb78571.tar.zst godot-b0649d2718f48c812e29884c633a823b1cb78571.zip | |
Diffstat (limited to 'modules/gdscript')
| -rw-r--r-- | modules/gdscript/gdscript_editor.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript_editor.cpp b/modules/gdscript/gdscript_editor.cpp index 87e127649..30ef16746 100644 --- a/modules/gdscript/gdscript_editor.cpp +++ b/modules/gdscript/gdscript_editor.cpp @@ -2636,6 +2636,13 @@ Error GDScriptLanguage::lookup_code(const String &p_code, const String &p_symbol } } + if ("PI" == p_symbol || "TAU" == p_symbol || "INF" == p_symbol || "NAN" == p_symbol) { + r_result.type = ScriptLanguage::LookupResult::RESULT_CLASS_CONSTANT; + r_result.class_name = "@GDScript"; + r_result.class_member = p_symbol; + return OK; + } + GDScriptParser p; p.parse(p_code, p_base_path, false, "", true); |
