Daggerheart-fvtt/module/helpers/templates.mjs

17 lines
625 B
JavaScript
Raw Permalink Normal View History

/**
* 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([
// Actor partials.
'systems/boilerplate/templates/actor/parts/actor-features.hbs',
'systems/boilerplate/templates/actor/parts/actor-items.hbs',
'systems/boilerplate/templates/actor/parts/actor-spells.hbs',
'systems/boilerplate/templates/actor/parts/actor-effects.hbs',
// Item partials
'systems/boilerplate/templates/item/parts/item-effects.hbs',
]);
};