diff --git a/assets/talks/full.talk.ron b/assets/talks/full.talk.ron index 589cb59..0a2e819 100644 --- a/assets/talks/full.talk.ron +++ b/assets/talks/full.talk.ron @@ -69,7 +69,7 @@ ( id: 100, action: Leave, - actors: ["ferriss", "bevy"], + actors: ["ferris", "bevy"], next: Some(12), ), ( diff --git a/examples/full.rs b/examples/full.rs index 742db27..fac8ebf 100644 --- a/examples/full.rs +++ b/examples/full.rs @@ -82,6 +82,7 @@ fn print(talk_comps: Query>) { println!("{}: {}", i + 1, choice.text); } } + _ => (), }; } } diff --git a/examples/simple.rs b/examples/simple.rs index 8bb67c2..0c3aeea 100644 --- a/examples/simple.rs +++ b/examples/simple.rs @@ -93,6 +93,7 @@ fn print(talk_comps: Query>) { NodeKind::Join => println!("--- {actors:?} enters the scene."), NodeKind::Leave => println!("--- {actors:?} exit the scene."), NodeKind::Choice => println!("Not implemented"), + _ => (), }; } }