fix(input): only allow handlers with enabled field nodes

This commit is contained in:
Nova
2024-07-18 11:24:06 -04:00
parent ecc7d7b912
commit 6350444559

View File

@@ -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()