quil

reefersleep 2024-09-25T12:49:41.966859Z

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

😍 2
😄 1
reefersleep 2024-11-04T14:41:57.992979Z

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

1
Benjamin 2024-09-25T13:33:41.274829Z

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

✅ 1
Benjamin 2024-09-26T07:51:10.887409Z

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

genmeblog 2024-09-25T14:57:18.971479Z

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

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

➕ 1