Add commentary panel and Tekken-inspired OBS overlay

This commit is contained in:
Pandipipas
2026-02-12 00:13:18 +01:00
parent 6d28cfb87e
commit 3ee36c03df
11 changed files with 419 additions and 8 deletions
+8
View File
@@ -19,3 +19,11 @@ function hasNoDefault<T>(name: string) {
export const exampleReplicant = hasDefault<Schemas.ExampleReplicant>('exampleReplicant');
export const playersReplicant = hasDefault<Schemas.Players>('players');
export const scoreboardReplicant = hasDefault<Schemas.Scoreboard>('scoreboard');
export const commentaryReplicant = nodecg.Replicant<Schemas.Commentary>('commentary', {
defaultValue: {
leftCommentator: '',
rightCommentator: '',
},
persistent: false,
});