Various enhancements, restyling and new options
CI / ci (push) Successful in 47s

This commit is contained in:
2026-05-27 11:07:12 +02:00
parent 069107052d
commit 816b7951fb
51 changed files with 16687 additions and 670 deletions
+27
View File
@@ -163,6 +163,33 @@ Hooks.once("init", () => {
onChange: () => roleRenderer?.rerenderStrip(),
});
// Tile shape for participant avatars in the Director's Board
adapter.settings.register("tileShape", {
scope: "world",
config: false,
type: String,
default: "circle",
onChange: () => roleRenderer?.rerenderStrip(),
});
// Tile border width around video shapes (px). 0 = no border.
adapter.settings.register("tileBorderWidth", {
scope: "world",
config: false,
type: Number,
default: 0,
onChange: () => roleRenderer?.rerenderStrip(),
});
// Tile border color around video shapes.
adapter.settings.register("tileBorderColor", {
scope: "world",
config: false,
type: String,
default: "#ffffff",
onChange: () => roleRenderer?.rerenderStrip(),
});
// Story 5.2: Video widget width customization — world-scoped settings for small and large tile widths
adapter.settings.register("widgetWidthSm", {
scope: "world",