Experimented with hope/fear pulsed text and the DhCompatible logo

This commit is contained in:
WBHarry 2026-06-07 17:06:40 +02:00
parent a148aa3bcb
commit 47a852754c
7 changed files with 37 additions and 0 deletions

View file

@ -8,3 +8,4 @@ export { default as DhHotbar } from './hotbar.mjs';
export { default as DhSceneNavigation } from './sceneNavigation.mjs';
export { ItemBrowser } from './itemBrowser.mjs';
export { default as DhProgress } from './progress.mjs';
export { default as DhGamePause } from './gamePause.mjs';

View file

@ -0,0 +1,10 @@
export default class DhGamePause extends foundry.applications.ui.GamePause {
/** @override */
async _prepareContext(options) {
const context = await super._prepareContext(options);
context.spin = false;
context.icon = 'systems/daggerheart/assets/logos/compatible_with_DH_logos-10.png';
return context;
}
}