} p5.Font object.
+ * @example
+ *
+ *
+ * let font;
+ *
+ * async function setup() {
+ * createCanvas(100, 100);
+ * font = await loadFont('assets/inconsolata.otf');
+ * fill('deeppink');
+ * textFont(font);
+ * textSize(36);
+ * text('p5*js', 10, 50);
+ *
+ * describe('The text "p5*js" written in pink on a white background.');
+ * }
+ *
+ *
+ *
+ * @example
+ *
+ *
+ * function setup() {
+ * createCanvas(100, 100);
+ * loadFont('assets/inconsolata.otf', font => {
+ * fill('deeppink');
+ * textFont(font);
+ * textSize(36);
+ * text('p5*js', 10, 50);
+ *
+ * describe('The text "p5*js" written in pink on a white background.');
+ * });
+ * }
+ *
+ *
+ *
+ * @example
+ *
+ *
+ * function setup() {
+ * createCanvas(100, 100);
+ * loadFont('assets/inconsolata.otf', success, failure);
+ * }
+ *
+ * function success(font) {
+ * fill('deeppink');
+ * textFont(font);
+ * textSize(36);
+ * text('p5*js', 10, 50);
+ *
+ * describe('The text "p5*js" written in pink on a white background.');
+ * }
+ *
+ * function failure(event) {
+ * console.error('Oops!', event);
+ * }
+ *
+ *
+ *
+ * @example
+ *
+ *
+ * async function setup() {
+ * createCanvas(100, 100);
+ * await loadFont('assets/inconsolata.otf');
+ * let p = createP('p5*js');
+ * p.style('color', 'deeppink');
+ * p.style('font-family', 'Inconsolata');
+ * p.style('font-size', '36px');
+ * p.position(10, 50);
+ *
+ * describe('The text "p5*js" written in pink on a white background.');
+ * }
+ *
+ *
+ *
+ * @example
+ *
+ *
+ * // Some other forms of loading fonts:
+ * loadFont("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");
+ * loadFont(`@font-face { font-family: "Bricolage Grotesque", serif; font-optical-sizing: auto; font-weight: 400; font-style: normal; font-variation-settings: "wdth" 100; }`);
+ * loadFont({
+ * fontFamily: '"Bricolage Grotesque", serif',
+ * fontOpticalSizing: 'auto',
+ * fontWeight: 400,
+ * fontStyle: 'normal',
+ * fontVariationSettings: '"wdth" 100',
+ * });
+ *
+ *
*/
+ /**
+ * @method loadFont
+ * @for p5
+ * @param {String} path path of the font to be loaded.
+ * @param {Function} [successCallback] function called with the
+ * p5.Font object after it
+ * loads.
+ * @param {Function} [failureCallback] function called with the error
+ * Event
+ * object if the font fails to load.
+ * @returns {Promise} The font.
+ */
fn.loadFont = async function (...args/*path, name, onSuccess, onError, descriptors*/) {
let { path, name, success, error, descriptors } = parseCreateArgs(...args);
diff --git a/src/type/textCore.js b/src/type/textCore.js
index 968c9dcc00..312346a3a1 100644
--- a/src/type/textCore.js
+++ b/src/type/textCore.js
@@ -1332,6 +1332,7 @@ function textCore(p5, fn) {
* @returns {Number} If no arguments are provided, the current font weight
*
* @example
+ *
*
* function setup() {
* createCanvas(300, 200);
@@ -1365,6 +1366,30 @@ function textCore(p5, fn) {
* text("Bold Weight: " + boldWeight, 150, 100);
* }
*
+ *
+ *
+ *
+ *
+ * let font;
+ *
+ * async function setup() {
+ * createCanvas(100, 100);
+ * font = await loadFont(
+ * 'https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'
+ * );
+ * }
+ *
+ * function draw() {
+ * background(255);
+ * textFont(font);
+ * textAlign(LEFT, TOP);
+ * textSize(35);
+ * textWeight(sin(millis() * 0.002) * 200 + 400);
+ * text('p5*js', 0, 10);
+ * describe('The text p5*js pulsing its weight over time');
+ * }
+ *
+ *
*/
/**
* @method textWeight