2024-09-22 16:28:59 +02:00
|
|
|
/**
|
|
|
|
* 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.
|
2024-12-10 17:22:28 +01:00
|
|
|
"systems/fvtt-never-stop-blowing-up/templates/actor/parts/actor-features.html",
|
|
|
|
"systems/fvtt-never-stop-blowing-up/templates/actor/parts/actor-adversity.html",
|
|
|
|
"systems/fvtt-never-stop-blowing-up/templates/actor/parts/actor-stats.html",
|
|
|
|
"systems/fvtt-never-stop-blowing-up/templates/actor/parts/actor-npc-stats.html",
|
2024-09-22 16:28:59 +02:00
|
|
|
]);
|
|
|
|
};
|