Hi,
in the plugin API,
at initialization, i’m loading fonts with loadFontAsync
this way
await figma.loadFontAsync({ family: "Baloo Paaji 2", style: "Medium" });
await figma.loadFontAsync({ family: "Baloo Paaji 2", style: "Regular" });
//about 10 loads like this one
is there a faster way to do a bulk load, something where i would pass all the parameters at once in an array ?
Thanks in advance.