Skip to content

Commit 23283f4

Browse files
author
Lauren McCarthy
committed
updating file names to reduce length
1 parent 919ad4e commit 23283f4

File tree

23 files changed

+25
-25
lines changed

23 files changed

+25
-25
lines changed
-25.3 KB
Binary file not shown.
-31.2 KB
Binary file not shown.
-56 KB
Binary file not shown.
-61.4 KB
Binary file not shown.
-56 KB
Binary file not shown.
-61.4 KB
Binary file not shown.
-137 KB
Binary file not shown.
-148 KB
Binary file not shown.

lib/addons/p5.dom.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2044,7 +2044,7 @@
20442044
* function setup() {
20452045
* //Here we create a p5.MediaElement object
20462046
* //using the createAudio() function.
2047-
* ele = createAudio('assets/lucky_dragons_-_power_melody.mp3');
2047+
* ele = createAudio('assets/lucky_dragons.mp3');
20482048
* background(200);
20492049
* textAlign(CENTER);
20502050
* text('Click to play!', width / 2, height / 2);
@@ -2106,7 +2106,7 @@
21062106
* function setup() {
21072107
* //Here we create a p5.MediaElement object
21082108
* //using the createAudio() function.
2109-
* ele = createAudio('assets/lucky_dragons_-_power_melody.mp3');
2109+
* ele = createAudio('assets/lucky_dragons.mp3');
21102110
* background(200);
21112111
* textAlign(CENTER);
21122112
* text('Click to loop!', width / 2, height / 2);
@@ -2221,7 +2221,7 @@
22212221
* // and createCapture() functions.
22222222
* // In this example we create
22232223
* // a new p5.MediaElement via createAudio().
2224-
* ele = createAudio('assets/lucky_dragons_-_power_melody.mp3');
2224+
* ele = createAudio('assets/lucky_dragons.mp3');
22252225
* background(250);
22262226
* textAlign(CENTER);
22272227
* text('Click to Play!', width / 2, height / 2);
@@ -2245,7 +2245,7 @@
22452245
* }
22462246
*
22472247
* function setup() {
2248-
* audio = createAudio('assets/lucky_dragons_-_power_melody.mp3', loaded);
2248+
* audio = createAudio('assets/lucky_dragons.mp3', loaded);
22492249
* textAlign(CENTER);
22502250
* }
22512251
*
@@ -2384,7 +2384,7 @@
23842384
*
23852385
* //In this example we create
23862386
* //a new p5.MediaElement via createAudio().
2387-
* ele = createAudio('assets/lucky_dragons_-_power_melody.mp3');
2387+
* ele = createAudio('assets/lucky_dragons.mp3');
23882388
* background(250);
23892389
* textAlign(CENTER);
23902390
* text('start at beginning', width / 2, height / 2);
@@ -2650,7 +2650,7 @@
26502650
* //and createCapture() functions.
26512651
* //In this example we create
26522652
* //a new p5.MediaElement via createAudio()
2653-
* ele = createAudio('assets/lucky_dragons_-_power_melody.mp3');
2653+
* ele = createAudio('assets/lucky_dragons.mp3');
26542654
* background(200);
26552655
* textAlign(CENTER);
26562656
* text('Click to Show Controls!', 10, 25, 70, 80);
@@ -2680,7 +2680,7 @@
26802680
* //and createCapture() functions.
26812681
* //In this example we create
26822682
* //a new p5.MediaElement via createAudio()
2683-
* ele = createAudio('assets/lucky_dragons_-_power_melody.mp3');
2683+
* ele = createAudio('assets/lucky_dragons.mp3');
26842684
* ele.showControls();
26852685
* background(200);
26862686
* textAlign(CENTER);

lib/addons/p5.sound.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1167,7 +1167,7 @@ soundfile = function () {
11671167
*
11681168
* function preload() {
11691169
* soundFormats('ogg', 'mp3');
1170-
* soundFile = loadSound('assets/Damscray_-_Dancing_Tiger_02.mp3');
1170+
* soundFile = loadSound('assets/Damscray_02.mp3');
11711171
* }
11721172
* function setup() {
11731173
* background(0, 255, 0);
@@ -9539,7 +9539,7 @@ reverb = function () {
95399539
* cVerb = createConvolver('assets/bx-spring.mp3');
95409540
*
95419541
* // Try replacing 'Damscray_DancingTiger' with
9542-
* // 'beat', 'doorbell', lucky_dragons_-_power_melody'
9542+
* // 'beat', 'doorbell', lucky_dragons'
95439543
* sound = loadSound('assets/Damscray_DancingTiger.mp3');
95449544
* }
95459545
*
@@ -9607,7 +9607,7 @@ reverb = function () {
96079607
* cVerb = createConvolver('assets/bx-spring.mp3');
96089608
*
96099609
* // Try replacing 'Damscray_DancingTiger' with
9610-
* // 'beat', 'doorbell', lucky_dragons_-_power_melody'
9610+
* // 'beat', 'doorbell', lucky_dragons'
96119611
* sound = loadSound('assets/Damscray_DancingTiger.mp3');
96129612
* }
96139613
*
@@ -11515,7 +11515,7 @@ gain = function () {
1151511515
*
1151611516
* function preload(){
1151711517
* soundFormats('ogg', 'mp3');
11518-
* sound1 = loadSound('../_files/Damscray_-_Dancing_Tiger_01');
11518+
* sound1 = loadSound('../_files/Damscray_01');
1151911519
* sound2 = loadSound('../_files/beat.mp3');
1152011520
* }
1152111521
*

0 commit comments

Comments
 (0)