We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9932797 commit a41f773Copy full SHA for a41f773
src/webgl/ShaderGenerator.js
@@ -347,7 +347,6 @@ function shadergenerator(p5, fn) {
347
let returnType = properties.returnType;
348
if (returnType === 'genType') {
349
returnType = args[0].type;
350
- console.log("GENTYPE")
351
}
352
super(isInternal, returnType);
353
this.name = name;
@@ -575,6 +574,7 @@ function shadergenerator(p5, fn) {
575
574
576
Object.keys(availableHooks).forEach((hookName) => {
577
const hookTypes = originalShader.hookTypes(hookName);
+ console.log(hookTypes);
578
this[hookTypes.name] = function(userCallback) {
579
// Create the initial nodes which are passed to the user callback
580
// Also generate a string of the arguments for the code generation
0 commit comments