Skip to content

Commit

Permalink
add idle steps to detect when dancer stands around
Browse files Browse the repository at this point in the history
  • Loading branch information
jakmeier committed Dec 19, 2023
1 parent 1ceaa7d commit 3838526
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions bouncy_frontend/static/step.ron
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
(
version: 0,
steps: [
(
name: "Idle",
keyframes: [
(pose: "standing-straight-front", orientation: ToCamera),
(pose: "standing-straight-front", orientation: ToCamera),
]
),
(
name: "Idle Side",
keyframes: [
(pose: "standing-straight-side", orientation: Right),
(pose: "standing-straight-side", orientation: Right),
]
),
(
name: "Running Man",
keyframes: [
Expand Down
2 changes: 1 addition & 1 deletion bouncy_instructor/tests/step_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ fn test_listing_static_steps() {

step_names.sort();

let expect = expect!["Pendulum,Running Man,Running Man on Heels,V-Step"];
let expect = expect!["Idle,Idle Side,Pendulum,Running Man,Running Man on Heels,V-Step"];
expect.assert_eq(&step_names.join(","));
}

0 comments on commit 3838526

Please sign in to comment.