@@ -46,7 +46,7 @@ import p5 from '../core/main';
46
46
* ```glsl
47
47
* void main() {
48
48
* HOOK_beforeVertex();
49
- * // Add the rest ofy our shader code here!
49
+ * // Add the rest of your shader code here!
50
50
* }
51
51
* ```
52
52
*
@@ -333,10 +333,7 @@ p5.Shader = class {
333
333
console . log ( '' ) ;
334
334
console . log ( '==== Helper functions: ====' ) ;
335
335
for ( const key in this . hooks . helpers ) {
336
- console . log (
337
- key +
338
- this . hooks . helpers [ key ]
339
- ) ;
336
+ console . log ( key + this . hooks . helpers [ key ] ) ;
340
337
}
341
338
}
342
339
@@ -946,7 +943,7 @@ p5.Shader = class {
946
943
const modelMatrix = this . _renderer . uModelMatrix ;
947
944
const viewMatrix = this . _renderer . uViewMatrix ;
948
945
const projectionMatrix = this . _renderer . uPMatrix ;
949
- const modelViewMatrix = ( modelMatrix . copy ( ) ) . mult ( viewMatrix ) ;
946
+ const modelViewMatrix = modelMatrix . copy ( ) . mult ( viewMatrix ) ;
950
947
this . _renderer . uMVMatrix = modelViewMatrix ;
951
948
952
949
const modelViewProjectionMatrix = modelViewMatrix . copy ( ) ;
@@ -1334,15 +1331,14 @@ p5.Shader = class {
1334
1331
) {
1335
1332
console . log (
1336
1333
'🌸 p5.js says: ' +
1337
- ' You\ 're trying to use a number as the data for a texture.' +
1338
- 'Please use a texture.'
1334
+ " You're trying to use a number as the data for a texture." +
1335
+ 'Please use a texture.'
1339
1336
) ;
1340
1337
return this ;
1341
1338
}
1342
1339
gl . activeTexture ( data ) ;
1343
1340
gl . uniform1i ( location , data ) ;
1344
- }
1345
- else {
1341
+ } else {
1346
1342
gl . activeTexture ( gl . TEXTURE0 + uniform . samplerIndex ) ;
1347
1343
uniform . texture =
1348
1344
data instanceof p5 . Texture ? data : this . _renderer . getTexture ( data ) ;
@@ -1376,8 +1372,8 @@ p5.Shader = class {
1376
1372
) {
1377
1373
console . log (
1378
1374
'🌸 p5.js says: ' +
1379
- ' You\ 're trying to use a number as the data for a texture.' +
1380
- 'Please use a texture.'
1375
+ " You're trying to use a number as the data for a texture." +
1376
+ 'Please use a texture.'
1381
1377
) ;
1382
1378
break ;
1383
1379
}
0 commit comments