Open In App

p5.js | isLoaded() Function

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

The isLoaded() function is an inbuilt function of p5.sound library that verifies that the loadSound() function performed successfully, if that loadSound was successful then this function will return true else false. That means it returns Boolean value.

Syntax:

isLoaded()

Note: All the sound-related functions only work when the sound library is included in the head section of the index.html file.

Parameters: This function does not accept any parameter.

Below example illustrate the p5.isLoaded() function in JavaScript:
Example:




var sound; 
var load;
   
function preload() { 
   
    // Initialize sound 
    sound = loadSound("pfivesound.mp3"); 
   
function setup() { 
           
    //Checking loaded or not
    var load = sound.isLoaded();
    console.log(load);
      
    // Playing the preloaded sound 
    sound.play(); 


Output:

true

Online editor: https://editor.p5js.org/
Environment Setup: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/

Supported Browsers: The browsers supported by p5.isLoaded function are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera

Last Updated : 17 Jan, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads