quil 2024-09-25

I really dig this one, more than yesterday's. The extra iterations make for a deep view.

😍 2
😄 1

I made this public, btw, so you can play with it yourself if you want. https://www.shadertoy.com/view/4X2fz3

1

do you have an idea how I disable the quil window closing on pressing escape?

✅ 1

Thanks! seems like this works: https://github.com/quil/quil/issues/417 Also randomly saw there is a github issue with the same question

You need to replicate this Processing snippet. Setting key variable to 0 is crucial here.

void keyPressed() {
  if (key == ESC) {
    key = 0;
  }
}

➕ 1