GDScript: Remove reference to remove @export_exp_range

It was removed in 75688772b3 to be replaced
by `@export_range` with an `"exp"` hint string.
This commit is contained in:
Rémi Verschelde 2021-09-17 22:54:35 +02:00
parent ec23d1348a
commit ae3b26da7b
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -637,7 +637,7 @@ static void _get_directory_contents(EditorFileSystemDirectory *p_dir, Map<String
}
static void _find_annotation_arguments(const GDScriptParser::AnnotationNode *p_annotation, int p_argument, const String p_quote_style, Map<String, ScriptCodeCompletionOption> &r_result) {
if (p_annotation->name == "@export_range" || p_annotation->name == "@export_exp_range") {
if (p_annotation->name == "@export_range") {
if (p_argument == 3 || p_argument == 4) {
// Slider hint.
ScriptCodeCompletionOption slider1("or_greater", ScriptCodeCompletionOption::KIND_PLAIN_TEXT);