├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── asset-sources ├── LICENSE.txt ├── control-icon-bg.png ├── control-icon-border.png ├── control-icon-corner.png ├── icons │ └── svg │ │ ├── acid.png │ │ ├── anchor.png │ │ ├── angel.png │ │ ├── aura.png │ │ ├── barrel.png │ │ ├── biohazard.png │ │ ├── blind.png │ │ ├── blood.png │ │ ├── bones.png │ │ ├── book.png │ │ ├── bridge.png │ │ ├── cancel.png │ │ ├── card-hand.png │ │ ├── card-joker.png │ │ ├── castle.png │ │ ├── cave.png │ │ ├── chest.png │ │ ├── circle.png │ │ ├── city.png │ │ ├── clockwork.png │ │ ├── coins.png │ │ ├── combat.png │ │ ├── cowled.png │ │ ├── d10-grey.png │ │ ├── d12-grey.png │ │ ├── d20-black.png │ │ ├── d20-grey.png │ │ ├── d20-highlight.png │ │ ├── d20.png │ │ ├── d4-grey.png │ │ ├── d6-grey.png │ │ ├── d8-grey.png │ │ ├── daze.png │ │ ├── deaf.png │ │ ├── degen.png │ │ ├── dice-target.png │ │ ├── direction.png │ │ ├── door-closed-outline.png │ │ ├── door-closed.png │ │ ├── door-exit.png │ │ ├── door-locked-outline.png │ │ ├── door-open-outline.png │ │ ├── door-secret-outline.png │ │ ├── door-steel.png │ │ ├── down.png │ │ ├── downgrade.png │ │ ├── explosion.png │ │ ├── eye.png │ │ ├── falling.png │ │ ├── fire-shield.png │ │ ├── fire.png │ │ ├── frozen.png │ │ ├── hanging-sign.png │ │ ├── hazard.png │ │ ├── heal.png │ │ ├── holy-shield.png │ │ ├── house.png │ │ ├── ice-aura.png │ │ ├── ice-shield.png │ │ ├── invisible.png │ │ ├── item-bag.png │ │ ├── lever.png │ │ ├── light-off.png │ │ ├── light.png │ │ ├── lightning.png │ │ ├── mage-shield.png │ │ ├── mole.png │ │ ├── mountain.png │ │ ├── mystery-man-black.png │ │ ├── mystery-man.png │ │ ├── net.png │ │ ├── oak.png │ │ ├── obelisk.png │ │ ├── padlock.png │ │ ├── paralysis.png │ │ ├── pawprint.png │ │ ├── pill.png │ │ ├── poison.png │ │ ├── radiation.png │ │ ├── regen.png │ │ ├── ruins.png │ │ ├── shield.png │ │ ├── silenced.png │ │ ├── skull.png │ │ ├── sleep.png │ │ ├── sound-off.png │ │ ├── sound.png │ │ ├── statue.png │ │ ├── stone-path.png │ │ ├── stoned.png │ │ ├── sun.png │ │ ├── sword.png │ │ ├── tankard.png │ │ ├── target.png │ │ ├── temple.png │ │ ├── terror.png │ │ ├── thrust.png │ │ ├── tower-flag.png │ │ ├── tower.png │ │ ├── trap.png │ │ ├── unconscious.png │ │ ├── up.png │ │ ├── upgrade.png │ │ ├── video.png │ │ ├── village.png │ │ ├── wall-direction.png │ │ ├── waterfall.png │ │ ├── windmill.png │ │ ├── wing.png │ │ └── wingfoot.png ├── spritesheets │ ├── base-icons-0.png │ └── base-icons-1.png └── tiling-noise-4k.png ├── assets ├── control-icon-bg.png ├── control-icon-border.png ├── control-icon-corner.png ├── noise │ ├── tiling-noise-128.png │ ├── tiling-noise-1k.png │ ├── tiling-noise-256.png │ ├── tiling-noise-512.png │ └── tiling-noise-64.png └── spritesheets │ ├── base-icons-0.basis │ ├── base-icons-0.json │ ├── base-icons-1.basis │ └── base-icons-1.json ├── eslint.config.js ├── img ├── after.png ├── before.png ├── default-foundry │ ├── 03-after-darkness.webp │ ├── 04-lighting.webp │ ├── 05-after-lighting.webp │ ├── 06-grid.webp │ ├── 07-first-token-ui.webp │ ├── 08-more-token-ui.webp │ ├── 09-erase.webp │ ├── 10-dragon-token-ui.webp │ ├── 12-methit-erase-and-ui.webp │ ├── 13-complete-ui.webp │ └── 14-done.webp ├── short-version │ ├── 01-goblin-ui.webp │ ├── 02-erase-dragon-image.webp │ └── 03-final-comparison.webp └── visual-comparison │ ├── default.avif │ ├── default.png │ └── prime-performance.avif ├── lang ├── de.json ├── en.json ├── fr.json ├── ja.json └── pl.json ├── module.json ├── package.json ├── src ├── DynamicSpriteSheet.ts ├── apps │ ├── CustomRenderScaleMenu.ts │ └── CustomSpritesheetConfig.ts ├── constants.ts ├── global.d.ts ├── hacks │ ├── disableAppBackgroundBlur.ts │ ├── effectsCaching.ts │ ├── index.ts │ ├── precomputedNoiseTextures.ts │ ├── reduceLightingResolution.ts │ ├── spritesheetSubstitution.ts │ ├── tokenBarsCaching.ts │ ├── tokenRingSpritesheetSupport.ts │ └── useOooTokenRendering.ts ├── index.js ├── index.ts ├── init.ts ├── settings │ ├── constants.ts │ └── settings.ts └── utils │ ├── foundryShim.ts │ ├── getBitmapCacheResolution.ts │ ├── patchShader.ts │ ├── registerWrapper.ts │ └── wrapFunction.ts ├── styles └── disable-blur.css ├── templates ├── custom-spritesheets-config.hbs └── render-resolution-menu.hbs ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.12.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/README.md -------------------------------------------------------------------------------- /asset-sources/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/LICENSE.txt -------------------------------------------------------------------------------- /asset-sources/control-icon-bg.png: -------------------------------------------------------------------------------- 1 | ../assets/control-icon-bg.png -------------------------------------------------------------------------------- /asset-sources/control-icon-border.png: -------------------------------------------------------------------------------- 1 | ../assets/control-icon-border.png -------------------------------------------------------------------------------- /asset-sources/control-icon-corner.png: -------------------------------------------------------------------------------- 1 | ../assets/control-icon-corner.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/acid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/acid.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/anchor.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/angel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/angel.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/aura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/aura.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/barrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/barrel.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/biohazard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/biohazard.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/blind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/blind.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/blood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/blood.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/bones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/bones.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/book.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/bridge.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/cancel.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/card-hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/card-hand.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/card-joker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/card-joker.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/castle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/castle.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/cave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/cave.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/chest.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/circle.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/city.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/clockwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/clockwork.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/coins.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/combat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/combat.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/cowled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/cowled.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/d10-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/d10-grey.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/d12-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/d12-grey.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/d20-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/d20-black.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/d20-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/d20-grey.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/d20-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/d20-highlight.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/d20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/d20.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/d4-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/d4-grey.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/d6-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/d6-grey.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/d8-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/d8-grey.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/daze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/daze.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/deaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/deaf.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/degen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/degen.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/dice-target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/dice-target.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/direction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/direction.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/door-closed-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/door-closed-outline.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/door-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/door-closed.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/door-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/door-exit.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/door-locked-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/door-locked-outline.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/door-open-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/door-open-outline.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/door-secret-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/door-secret-outline.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/door-steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/door-steel.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/down.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/downgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/downgrade.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/explosion.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/eye.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/falling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/falling.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/fire-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/fire-shield.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/fire.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/frozen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/frozen.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/hanging-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/hanging-sign.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/hazard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/hazard.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/heal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/heal.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/holy-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/holy-shield.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/house.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/ice-aura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/ice-aura.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/ice-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/ice-shield.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/invisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/invisible.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/item-bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/item-bag.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/lever.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/lever.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/light-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/light-off.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/light.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/lightning.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/mage-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/mage-shield.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/mole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/mole.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/mountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/mountain.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/mystery-man-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/mystery-man-black.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/mystery-man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/mystery-man.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/net.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/oak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/oak.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/obelisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/obelisk.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/padlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/padlock.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/paralysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/paralysis.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/pawprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/pawprint.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/pill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/pill.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/poison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/poison.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/radiation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/radiation.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/regen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/regen.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/ruins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/ruins.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/shield.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/silenced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/silenced.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/skull.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/sleep.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/sound-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/sound-off.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/sound.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/statue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/statue.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/stone-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/stone-path.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/stoned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/stoned.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/sun.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/sword.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/tankard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/tankard.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/target.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/temple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/temple.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/terror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/terror.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/thrust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/thrust.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/tower-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/tower-flag.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/tower.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/trap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/trap.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/unconscious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/unconscious.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/up.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/upgrade.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/video.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/village.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/village.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/wall-direction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/wall-direction.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/waterfall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/waterfall.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/windmill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/windmill.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/wing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/wing.png -------------------------------------------------------------------------------- /asset-sources/icons/svg/wingfoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/icons/svg/wingfoot.png -------------------------------------------------------------------------------- /asset-sources/spritesheets/base-icons-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/spritesheets/base-icons-0.png -------------------------------------------------------------------------------- /asset-sources/spritesheets/base-icons-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/spritesheets/base-icons-1.png -------------------------------------------------------------------------------- /asset-sources/tiling-noise-4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/asset-sources/tiling-noise-4k.png -------------------------------------------------------------------------------- /assets/control-icon-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/assets/control-icon-bg.png -------------------------------------------------------------------------------- /assets/control-icon-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/assets/control-icon-border.png -------------------------------------------------------------------------------- /assets/control-icon-corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/assets/control-icon-corner.png -------------------------------------------------------------------------------- /assets/noise/tiling-noise-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/assets/noise/tiling-noise-128.png -------------------------------------------------------------------------------- /assets/noise/tiling-noise-1k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/assets/noise/tiling-noise-1k.png -------------------------------------------------------------------------------- /assets/noise/tiling-noise-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/assets/noise/tiling-noise-256.png -------------------------------------------------------------------------------- /assets/noise/tiling-noise-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/assets/noise/tiling-noise-512.png -------------------------------------------------------------------------------- /assets/noise/tiling-noise-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/assets/noise/tiling-noise-64.png -------------------------------------------------------------------------------- /assets/spritesheets/base-icons-0.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/assets/spritesheets/base-icons-0.basis -------------------------------------------------------------------------------- /assets/spritesheets/base-icons-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/assets/spritesheets/base-icons-0.json -------------------------------------------------------------------------------- /assets/spritesheets/base-icons-1.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/assets/spritesheets/base-icons-1.basis -------------------------------------------------------------------------------- /assets/spritesheets/base-icons-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/assets/spritesheets/base-icons-1.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/eslint.config.js -------------------------------------------------------------------------------- /img/after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/after.png -------------------------------------------------------------------------------- /img/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/before.png -------------------------------------------------------------------------------- /img/default-foundry/03-after-darkness.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/default-foundry/03-after-darkness.webp -------------------------------------------------------------------------------- /img/default-foundry/04-lighting.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/default-foundry/04-lighting.webp -------------------------------------------------------------------------------- /img/default-foundry/05-after-lighting.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/default-foundry/05-after-lighting.webp -------------------------------------------------------------------------------- /img/default-foundry/06-grid.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/default-foundry/06-grid.webp -------------------------------------------------------------------------------- /img/default-foundry/07-first-token-ui.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/default-foundry/07-first-token-ui.webp -------------------------------------------------------------------------------- /img/default-foundry/08-more-token-ui.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/default-foundry/08-more-token-ui.webp -------------------------------------------------------------------------------- /img/default-foundry/09-erase.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/default-foundry/09-erase.webp -------------------------------------------------------------------------------- /img/default-foundry/10-dragon-token-ui.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/default-foundry/10-dragon-token-ui.webp -------------------------------------------------------------------------------- /img/default-foundry/12-methit-erase-and-ui.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/default-foundry/12-methit-erase-and-ui.webp -------------------------------------------------------------------------------- /img/default-foundry/13-complete-ui.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/default-foundry/13-complete-ui.webp -------------------------------------------------------------------------------- /img/default-foundry/14-done.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/default-foundry/14-done.webp -------------------------------------------------------------------------------- /img/short-version/01-goblin-ui.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/short-version/01-goblin-ui.webp -------------------------------------------------------------------------------- /img/short-version/02-erase-dragon-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/short-version/02-erase-dragon-image.webp -------------------------------------------------------------------------------- /img/short-version/03-final-comparison.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/short-version/03-final-comparison.webp -------------------------------------------------------------------------------- /img/visual-comparison/default.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/visual-comparison/default.avif -------------------------------------------------------------------------------- /img/visual-comparison/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/visual-comparison/default.png -------------------------------------------------------------------------------- /img/visual-comparison/prime-performance.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/img/visual-comparison/prime-performance.avif -------------------------------------------------------------------------------- /lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/lang/de.json -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/lang/fr.json -------------------------------------------------------------------------------- /lang/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/lang/ja.json -------------------------------------------------------------------------------- /lang/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/lang/pl.json -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/module.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/package.json -------------------------------------------------------------------------------- /src/DynamicSpriteSheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/DynamicSpriteSheet.ts -------------------------------------------------------------------------------- /src/apps/CustomRenderScaleMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/apps/CustomRenderScaleMenu.ts -------------------------------------------------------------------------------- /src/apps/CustomSpritesheetConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/apps/CustomSpritesheetConfig.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- 1 | export const NAMESPACE = 'fvtt-perf-optim'; 2 | -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/hacks/disableAppBackgroundBlur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/hacks/disableAppBackgroundBlur.ts -------------------------------------------------------------------------------- /src/hacks/effectsCaching.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/hacks/effectsCaching.ts -------------------------------------------------------------------------------- /src/hacks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/hacks/index.ts -------------------------------------------------------------------------------- /src/hacks/precomputedNoiseTextures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/hacks/precomputedNoiseTextures.ts -------------------------------------------------------------------------------- /src/hacks/reduceLightingResolution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/hacks/reduceLightingResolution.ts -------------------------------------------------------------------------------- /src/hacks/spritesheetSubstitution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/hacks/spritesheetSubstitution.ts -------------------------------------------------------------------------------- /src/hacks/tokenBarsCaching.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/hacks/tokenBarsCaching.ts -------------------------------------------------------------------------------- /src/hacks/tokenRingSpritesheetSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/hacks/tokenRingSpritesheetSupport.ts -------------------------------------------------------------------------------- /src/hacks/useOooTokenRendering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/hacks/useOooTokenRendering.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/init.ts -------------------------------------------------------------------------------- /src/settings/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/settings/constants.ts -------------------------------------------------------------------------------- /src/settings/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/settings/settings.ts -------------------------------------------------------------------------------- /src/utils/foundryShim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/utils/foundryShim.ts -------------------------------------------------------------------------------- /src/utils/getBitmapCacheResolution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/utils/getBitmapCacheResolution.ts -------------------------------------------------------------------------------- /src/utils/patchShader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/utils/patchShader.ts -------------------------------------------------------------------------------- /src/utils/registerWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/utils/registerWrapper.ts -------------------------------------------------------------------------------- /src/utils/wrapFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/src/utils/wrapFunction.ts -------------------------------------------------------------------------------- /styles/disable-blur.css: -------------------------------------------------------------------------------- 1 | body.disable-app-background-blur * { 2 | backdrop-filter: none !important; 3 | } 4 | -------------------------------------------------------------------------------- /templates/custom-spritesheets-config.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/templates/custom-spritesheets-config.hbs -------------------------------------------------------------------------------- /templates/render-resolution-menu.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/templates/render-resolution-menu.hbs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codas/foundryvtt-performance-hacks/HEAD/vite.config.ts --------------------------------------------------------------------------------