Skip to content

Commit

Permalink
Update InMoov2Config.java
Browse files Browse the repository at this point in the history
  • Loading branch information
hairygael authored Oct 10, 2023
1 parent 4a6e34a commit 80cd12d
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,11 @@ public Plan getDefault(Plan plan, String name) {
MarySpeechConfig mouth = (MarySpeechConfig) plan.get(getPeerName("mouth"));
mouth.voice = "Mark";
mouth.speechRecognizers = new String[] { name + ".ear" };
mouth.listeners = new ArrayList<>();
mouth.listeners.add(new Listener("publishText", name + ".servoMixer", "onText"));

// == Peer - servoMixer =============================
// setup name references to different services
servoMixer.listeners = new ArrayList<>();
servoMixer.listeners.add(new Listener("publishText", name + ".mouth", "onText"));

// == Peer - ear =============================
// setup name references to different services
Expand Down

0 comments on commit 80cd12d

Please sign in to comment.