Another pass at basic moments

Adding diary, name of powers, name of moment type, and some supporting
thoughts.

Added a debug menu item to disable or enable the eleven labs speech.
Useful for removing it when debugging
This commit is contained in:
Tyler Marques 2025-05-29 16:20:17 -07:00
parent e1309c4012
commit ecf8e1db06
No known key found for this signature in database
GPG key ID: CB99EDCF41D3016F
7 changed files with 227 additions and 23 deletions

View file

@ -6,6 +6,7 @@
import { updateNextMomentDisplay, initNextMomentTool } from "./nextMoment";
import { initDebugProvinceHighlighting } from "./provinceHighlight";
import { initInstantChatTool } from "./instantChat";
import { initSpeechToggleTool } from "./speechToggle";
export class DebugMenu {
private toggleBtn: HTMLButtonElement;
@ -172,6 +173,7 @@ export class DebugMenu {
}
private initTools(): void {
initSpeechToggleTool(this);
initInstantChatTool(this);
initNextMomentTool(this);
initDebugProvinceHighlighting()