Skip to content

Commit bb04b25

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents d235493 + a344a61 commit bb04b25

File tree

6 files changed

+7
-4
lines changed

6 files changed

+7
-4
lines changed

dist/es/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ <h1 class='visuallyhidden'>Language Settings</h1>
116116
<a href="examples/">interactuar </a> con otros objetos HTML5, incluyendo texto, entrada del usuario, video, cámara y sonido. </p>
117117
<p>
118118

119-
<p style="margin-bottom:2em">p5.js es una nueva interpretación, no una emulación o un puerto, y está en activo desarrollo. <a href="https://editor.p5js.org" target="_blank">Try it out now in the new p5.js Web Editor!</a></p>
119+
<p style="margin-bottom:2em">p5.js es una nueva interpretación, no una emulación o un puerto, y está en activo desarrollo. <a href="https://editor.p5js.org" target="_blank">¡Prueba p5.js en nuestro nuevo editor web!</a></p>
120120

121121
</section>
122122
</div>
0 Bytes
Binary file not shown.

src/data/es.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ home:
3737
interact: "interactuar"
3838
p2x3: " con otros objetos HTML5, incluyendo texto, entrada del usuario, video, cámara y sonido."
3939
p3x1: "p5.js es una nueva interpretación, no una emulación o un puerto, y está en activo desarrollo."
40-
p3x2: "Try it out now in the new p5.js Web Editor!"
40+
p3x2: "¡Prueba p5.js en nuestro nuevo editor web!"
4141
sketch_by: "por"
4242
sketch_info: "CC Fest, 13 de octubre @ San Francisco Friends School"
4343
sketch_info_link: "http://ccfest.rocks/"

src/data/examples/en/20_3D/04_textures.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ function setup(){
1212

1313
img = loadImage("assets/cat.jpg");
1414
vid = createVideo(["assets/360video_256crop_v2.mp4"]);
15+
vid.elt.muted = true;
1516
vid.loop();
1617
vid.hide();
1718
}
@@ -36,4 +37,4 @@ function draw(){
3637
box(100, 100, 100);
3738
pop();
3839
theta += 0.05;
39-
}
40+
}

src/data/examples/es/20_3D/04_textures.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ function setup(){
1212

1313
img = loadImage("assets/cat.jpg");
1414
vid = createVideo(["assets/360video_256crop_v2.mp4"]);
15+
vid.elt.muted = true;
1516
vid.loop();
1617
vid.hide();
1718
}

src/data/examples/zh-Hans/20_3D/04_textures.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ function setup(){
1212

1313
img = loadImage("assets/cat.jpg");
1414
vid = createVideo(["assets/360video_256crop_v2.mp4"]);
15+
vid.elt.muted = true;
1516
vid.loop();
1617
vid.hide();
1718
}
@@ -36,4 +37,4 @@ function draw(){
3637
box(100, 100, 100);
3738
pop();
3839
theta += 0.05;
39-
}
40+
}

0 commit comments

Comments
 (0)