diff --git a/src/input/action_manifest.rs b/src/input/action_manifest.rs index 7db5e5a4..4fc9dcb6 100644 --- a/src/input/action_manifest.rs +++ b/src/input/action_manifest.rs @@ -577,7 +577,10 @@ fn parse_pose_binding<'de, D: serde::Deserializer<'de>>( "raw" => BoundPoseType::Raw, "tip" => BoundPoseType::Tip, "gdc2015" => BoundPoseType::Gdc2015, - other => return Err(D::Error::unknown_variant(other, &["raw", "tip", "gdc2015"])), + other => { + warn!("Unknown pose type: {other:?}"); + BoundPoseType::Raw + } }; Ok((hand, pose))