Skip to content

Commit a41f773

Browse files
committed
remove console log
1 parent 9932797 commit a41f773

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webgl/ShaderGenerator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,6 @@ function shadergenerator(p5, fn) {
347347
let returnType = properties.returnType;
348348
if (returnType === 'genType') {
349349
returnType = args[0].type;
350-
console.log("GENTYPE")
351350
}
352351
super(isInternal, returnType);
353352
this.name = name;
@@ -575,6 +574,7 @@ function shadergenerator(p5, fn) {
575574

576575
Object.keys(availableHooks).forEach((hookName) => {
577576
const hookTypes = originalShader.hookTypes(hookName);
577+
console.log(hookTypes);
578578
this[hookTypes.name] = function(userCallback) {
579579
// Create the initial nodes which are passed to the user callback
580580
// Also generate a string of the arguments for the code generation

0 commit comments

Comments
 (0)