Fix Ctrl+click on @GDScript constants

This commit is contained in:
Peter Folkins 2018-04-24 20:50:21 -05:00
parent a096df5e45
commit 825d49dfe2
1 changed files with 7 additions and 0 deletions

View File

@ -2628,6 +2628,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);