From 2aede38e4d1c12fc7cca88a1bd24bd22fe999e9d Mon Sep 17 00:00:00 2001 From: JobvAlewijk Date: Sat, 17 Jan 2026 16:09:13 +0100 Subject: [PATCH] feat: 10 basic gestures ref: N25B-300 --- .../MonitoringPage/MonitoringPageComponents.tsx | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/pages/MonitoringPage/MonitoringPageComponents.tsx b/src/pages/MonitoringPage/MonitoringPageComponents.tsx index 31e5b2d..6efeab5 100644 --- a/src/pages/MonitoringPage/MonitoringPageComponents.tsx +++ b/src/pages/MonitoringPage/MonitoringPageComponents.tsx @@ -7,12 +7,17 @@ export const GestureControls: React.FC = () => { const [selectedGesture, setSelectedGesture] = useState("animations/Stand/BodyTalk/Speaking/BodyTalk_1"); const gestures = [ - { label: "Body Talk 1", value: "animations/Stand/BodyTalk/Speaking/BodyTalk_1" }, - { label: "Thinking 8", value: "animations/Stand/Gestures/Thinking_8" }, - { label: "Thinking 1", value: "animations/Stand/Gestures/Thinking_1" }, - { label: "Happy", value: "animations/Stand/Emotions/Positive/Happy_1" }, + { label: "Wave", value: "animations/Stand/Gestures/Hey_1" }, + { label: "Think", value: "animations/Stand/Emotions/Neutral/Puzzled_1" }, + { label: "Explain", value: "animations/Stand/Gestures/Explain_4" }, + { label: "You", value: "animations/Stand/Gestures/You_1" }, + { label: "Happy", value: "animations/Stand/Emotions/Positive/Happy_1" }, + { label: "Laugh", value: "animations/Stand/Emotions/Positive/Laugh_2" }, + { label: "Lonely", value: "animations/Stand/Emotions/Neutral/Lonely_1" }, + { label: "Suprise", value: "animations/Stand/Emotions/Negative/Surprise_1" }, + { label: "Hurt", value: "animations/Stand/Emotions/Negative/Hurt_2" }, + { label: "Angry", value: "animations/Stand/Emotions/Negative/Angry_4" }, ]; - return (

Gestures