forked from GitHub-Mirrors/foundry-sw5e

System main update to be inline with dnd5e 1.1.1 Added active effects to as many sheets as I thought applicable. Please check loot, I made an attempt but it may be broken All .less .css and actor .html updates were made to the old actors. New actors may be broken with this update removed templates\actors\oldActor\parts\actor-effects.html for newer templates\actors\parts\active-effects.html removed module\apps\cast-dialog, templates\apps\cast-cast.html, and templates\items\cast.html. I do not think they are used, I think they were deprecated when powers were treated as items, if not we can add them back in. **NOTE** REQUIRES Foundry 0.7.6
33 lines
1.5 KiB
JavaScript
33 lines
1.5 KiB
JavaScript
/**
|
|
* Define a set of template paths to pre-load
|
|
* Pre-loaded templates are compiled and cached for fast access when rendering
|
|
* @return {Promise}
|
|
*/
|
|
export const preloadHandlebarsTemplates = async function() {
|
|
return loadTemplates([
|
|
|
|
// Shared Partials
|
|
"systems/sw5e/templates/actors/parts/active-effects.html",
|
|
|
|
// Actor Sheet Partials
|
|
"systems/sw5e/templates/actors/oldActor/parts/actor-traits.html",
|
|
"systems/sw5e/templates/actors/oldActor/parts/actor-inventory.html",
|
|
"systems/sw5e/templates/actors/oldActor/parts/actor-features.html",
|
|
"systems/sw5e/templates/actors/oldActor/parts/actor-powerbook.html",
|
|
|
|
"systems/sw5e/templates/actors/newActor/parts/swalt-biography.html",
|
|
"systems/sw5e/templates/actors/newActor/parts/swalt-core.html",
|
|
"systems/sw5e/templates/actors/newActor/parts/swalt-features.html",
|
|
"systems/sw5e/templates/actors/newActor/parts/swalt-inventory.html",
|
|
"systems/sw5e/templates/actors/newActor/parts/swalt-notes.html",
|
|
"systems/sw5e/templates/actors/newActor/parts/swalt-powerbook.html",
|
|
"systems/sw5e/templates/actors/newActor/parts/swalt-resources.html",
|
|
"systems/sw5e/templates/actors/newActor/parts/swalt-traits.html",
|
|
|
|
// Item Sheet Partials
|
|
"systems/sw5e/templates/items/parts/item-action.html",
|
|
"systems/sw5e/templates/items/parts/item-activation.html",
|
|
"systems/sw5e/templates/items/parts/item-description.html",
|
|
"systems/sw5e/templates/items/parts/item-mountable.html"
|
|
]);
|
|
};
|