All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 lines
640 B

import { SettingsMenuDorakoUI } from "./menu.js";
export class ExternalModuleSettings extends SettingsMenuDorakoUI {
static namespace = "external-module";
static SETTINGS = ["colorize-idle-hud"];
rerenderChatMessages() {}
static get settings() {
return {
"colorize-idle-hud": {
name: "pf2e-dorako-ui.settings.external-module.colorize-idle-hud.name",
hint: "pf2e-dorako-ui.settings.external-module.colorize-idle-hud.hint",
scope: "client",
type: Boolean,
default: false,
config: true,
requiresReload: false,
onChange: (value) => {},
},
};
}
}