From 6350444559887f69281b08df1efd31eb6d67cae9 Mon Sep 17 00:00:00 2001 From: Nova Date: Thu, 18 Jul 2024 11:24:06 -0400 Subject: [PATCH] fix(input): only allow handlers with enabled field nodes --- src/nodes/input/mod.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/nodes/input/mod.rs b/src/nodes/input/mod.rs index a0b6503d..055df8e6 100644 --- a/src/nodes/input/mod.rs +++ b/src/nodes/input/mod.rs @@ -113,6 +113,11 @@ pub fn process_input() { if !handler_node.enabled() { continue; } + if let Some(handler_field_node) = handler.field.spatial.node() { + if !handler_field_node.enabled() { + continue; + } + }; let (methods, datas) = methods .clone()