From acfe76e1efd9253c1e6ce923fcb89d6ed29500e2 Mon Sep 17 00:00:00 2001 From: "Wilson E. Alvarez" Date: Tue, 17 Dec 2024 17:41:33 -0500 Subject: [PATCH] Fix unhandled PROPERTY_HINT_NO_NODEPATH warning Due to upstream change: https://github.com/godotengine/godot/commit/6f7525c396cb28f4eb89203b476fd4a787cfd68d --- util/limbo_utility.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/util/limbo_utility.cpp b/util/limbo_utility.cpp index 81c5b53..fd029e6 100644 --- a/util/limbo_utility.cpp +++ b/util/limbo_utility.cpp @@ -404,6 +404,9 @@ String LimboUtility::get_property_hint_text(PropertyHint p_hint) const { case PROPERTY_HINT_ONESHOT: { return "ONESHOT"; } + case PROPERTY_HINT_NO_NODEPATH: { + return "NO_NODEPATH"; + } case PROPERTY_HINT_LOCALE_ID: { return "LOCALE_ID"; }