-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Open
Description
Most appropriate sub-area of p5.js?
- Accessibility
- Color
- Core/Environment/Rendering
- Data
- DOM
- Events
- Image
- IO
- Math
- Typography
- Utilities
- p5.strands
- WebGL
- DevOps, Build process, Unit testing
- Internationalization (i18n)
- Friendly Errors
- Other (specify if possible)
p5.js version
1.11.11
Web browser and version
chrome 143
Operating system
mac os 15.6.1
Steps to reproduce this
Steps:
- declare a variable
- use loadSound() in function preload() to assign
- error: loadSound is not defined
all versions prior to 1.11.11 support loadSound()
Snippet:
let beat;
function preload() {
beat = loadSound('sounds/worm.mp3');
}