From 939deff09a0421c18a08d76aef8c7f31966542a2 Mon Sep 17 00:00:00 2001 From: Jan Haller Date: Tue, 14 Dec 2021 19:41:24 +0100 Subject: [PATCH] Remove FloatHint::Enum variant Closes #820 --- gdnative-core/src/export/property/hint.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/gdnative-core/src/export/property/hint.rs b/gdnative-core/src/export/property/hint.rs index 98ed102ac..a49203819 100644 --- a/gdnative-core/src/export/property/hint.rs +++ b/gdnative-core/src/export/property/hint.rs @@ -265,8 +265,6 @@ pub enum FloatHint { Range(RangeHint), /// Hints that an integer or float property should be within an exponential range. ExpRange(RangeHint), - /// Hints that an integer, float or string property is an enumerated value to pick in a list. - Enum(EnumHint), /// Hints that a float property should be edited via an exponential easing function. ExpEasing(ExpEasingHint), }