Skip to content

Commit

Permalink
Fix examples
Browse files Browse the repository at this point in the history
  • Loading branch information
davepagurek committed Dec 18, 2024
1 parent 631a14d commit 34a116d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/webgl/material.js
Original file line number Diff line number Diff line change
Expand Up @@ -1739,7 +1739,7 @@ function material(p5, fn){
* uniforms: {
* 'float time': () => millis()
* },
* 'Vertex getWorldInputs': `(Inputs inputs) {
* 'Vertex getWorldInputs': `(Vertex inputs) {
* inputs.position.y +=
* 20. * sin(time * 0.001 + inputs.position.x * 0.05);
* return inputs;
Expand Down Expand Up @@ -1937,6 +1937,7 @@ function material(p5, fn){
* inputs.position.y*0.01
* ));
* inputs.weight *= scale;
* return inputs;
* }`
* });
* }
Expand Down

0 comments on commit 34a116d

Please sign in to comment.