fix(input): only allow handlers with enabled field nodes
This commit is contained in:
@@ -113,6 +113,11 @@ pub fn process_input() {
|
|||||||
if !handler_node.enabled() {
|
if !handler_node.enabled() {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if let Some(handler_field_node) = handler.field.spatial.node() {
|
||||||
|
if !handler_field_node.enabled() {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
let (methods, datas) = methods
|
let (methods, datas) = methods
|
||||||
.clone()
|
.clone()
|
||||||
|
|||||||
Reference in New Issue
Block a user