Add Anim Door Baeckerei - Enrico left; fix bugs

This commit is contained in:
Nadine Ganz 2025-08-11 17:48:02 +02:00
parent 7cf10f27dc
commit 47df6586e0
4 changed files with 12 additions and 4 deletions

View File

@ -635,6 +635,7 @@ Tree("22_Geschaeft_Story_A_Picknicken_Baeckerei_Outro") {
} }
} }
BTC.Hide("Animator.AnimatorBaeckereiT")
BTC.Run("MediaPlayer.VIDEOS.BaeckereiOutroFidl_04") BTC.Run("MediaPlayer.VIDEOS.BaeckereiOutroFidl_04")
BTC.Run("MediaPlayer.VIDEOS.BaeckereiOutroE5") BTC.Run("MediaPlayer.VIDEOS.BaeckereiOutroE5")
BTC.Run("MediaPlayer.VIDEOS.BaeckereiOutroE6") BTC.Run("MediaPlayer.VIDEOS.BaeckereiOutroE6")
@ -786,6 +787,12 @@ Tree("22_Geschaeft_Story_A_Picknicken_Baeckerei_Outro") {
Composite(Marathon) { Composite(Marathon) {
BTC.Run("MediaPlayer.VIDEOS.BaeckereiOutroE27") BTC.Run("MediaPlayer.VIDEOS.BaeckereiOutroE27")
Composite(Sequence) {
BTC.Wait(1)
BTC.Show("Animator.AnimatorBaeckereiT")
}
BTC.Run("MediaPlayer.VIDEOS.BaeckereiOutroF28") BTC.Run("MediaPlayer.VIDEOS.BaeckereiOutroF28")
} }

View File

@ -525,11 +525,11 @@ Tree("32_Grotto_Story_B_Grotto_Antwort_Nonna_Grotto") {
// -- Race 2: User sagt nichts // -- Race 2: User sagt nichts
Composite(Sequence) { Composite(Sequence) {
BTC.Wait(5) BTC.Wait(5)
BTC.Hide("GO.HINTS.SpeakHint")
BTC.CompareUserSpeechInputStarted(false) BTC.CompareUserSpeechInputStarted(false)
BTC.AbortSpeechEventListener() BTC.AbortSpeechEventListener()
BTC.StopSpeechIntentRecognition() BTC.StopSpeechIntentRecognition()
BTC.ClearPossbileSpeechIntents() BTC.ClearPossbileSpeechIntents()
BTC.Hide("GO.HINTS.SpeakHint")
} }
} }
@ -558,11 +558,11 @@ Tree("32_Grotto_Story_B_Grotto_Antwort_Nonna_Grotto") {
// -- Race 2: User sagt nichts // -- Race 2: User sagt nichts
Composite(Sequence) { Composite(Sequence) {
BTC.Wait(5) BTC.Wait(5)
BTC.Hide("GO.HINTS.SpeakHint")
BTC.CompareUserSpeechInputStarted(false) BTC.CompareUserSpeechInputStarted(false)
BTC.AbortSpeechEventListener() BTC.AbortSpeechEventListener()
BTC.StopSpeechIntentRecognition() BTC.StopSpeechIntentRecognition()
BTC.ClearPossbileSpeechIntents() BTC.ClearPossbileSpeechIntents()
BTC.Hide("GO.HINTS.SpeakHint")
} }
} }
@ -639,11 +639,11 @@ Tree("32_Grotto_Story_B_Grotto_Antwort_Nonna_Grotto_Teil2") {
// -- Race 2: User sagt nichts // -- Race 2: User sagt nichts
Composite(Sequence) { Composite(Sequence) {
BTC.Wait(5) BTC.Wait(5)
BTC.Hide("GO.HINTS.SpeakHint")
BTC.CompareUserSpeechInputStarted(false) BTC.CompareUserSpeechInputStarted(false)
BTC.AbortSpeechEventListener() BTC.AbortSpeechEventListener()
BTC.StopSpeechIntentRecognition() BTC.StopSpeechIntentRecognition()
BTC.ClearPossbileSpeechIntents() BTC.ClearPossbileSpeechIntents()
BTC.Hide("GO.HINTS.SpeakHint")
} }
} }

View File

@ -622,7 +622,7 @@ Tree("32_Grotto_Im_Grotto_Essen_Intro") {
BTC.Run("MediaPlayer.VIDEOS.OutroG2") BTC.Run("MediaPlayer.VIDEOS.OutroG2")
BTC.Run("MediaPlayer.VIDEOS.OutroGidle3") BTC.Run("MediaPlayer.VIDEOS.OutroGidle3")
BTC.Hide("MediaPlayer.VIDEOS.GrottoUnterhaltung_FIdle20") BTC.Hide("MediaPlayer.VIDEOS.OutroFidle1")
BTC.Run("MediaPlayer.VIDEOS.OutroF4") BTC.Run("MediaPlayer.VIDEOS.OutroF4")
BTC.Run("MediaPlayer.VIDEOS.OutroFidle5") BTC.Run("MediaPlayer.VIDEOS.OutroFidle5")

View File

@ -274,6 +274,7 @@ public class NamedAnimator : ComponentHandler {
if (nodeState == NodeState.FirstRun) if (nodeState == NodeState.FirstRun)
{ {
animatorComponent.enabled = false; animatorComponent.enabled = false;
animatorComponent.Rebind();
Task.SetSucceeded(); Task.SetSucceeded();
return; return;
} }