17 lines
675 B
JavaScript
17 lines
675 B
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([
|
|
// Actor partials.
|
|
'systems/shadowrun-6e-ultimate/templates/actor/parts/actor-features.hbs',
|
|
'systems/shadowrun-6e-ultimate/templates/actor/parts/actor-items.hbs',
|
|
'systems/shadowrun-6e-ultimate/templates/actor/parts/actor-spells.hbs',
|
|
'systems/shadowrun-6e-ultimate/templates/actor/parts/actor-effects.hbs',
|
|
// Item partials
|
|
'systems/shadowrun-6e-ultimate/templates/item/parts/item-effects.hbs',
|
|
]);
|
|
};
|