Zach Oakes

Results 197 comments of Zach Oakes

The only thing I can think of is that lwjgl 3.2.3 now requires an extra native dep if you want to support 32 bit windows. Do you know if your...

I tried making a new project and it works for me, both in powershell and cmd.exe with the command you pasted. Not sure what's going on =\ Is this an...

Were you able to figure this out? Maybe there is useful info in that clojure-*.edn file mentioned in the error.

Darn not much to go by. When you get the chance, try going back to 3.2.2 (just replace every instance of 3.2.3 in deps.edn with it) and see if that...

From your home directory, you can delete all your LWJGL artifacts by running: ` rm -r .\.m2\repository\org\lwjgl\` Also, from your play-cljc project, remove the cache with `rm -r .\.cpcache\` because...

Yeah we should keep it open. I'm about to release a new project that uses play-cljc so if other people have this issue we'll find out soon :)

If you wanted to stick with TRIANGLES, I suppose you could just render a rectangle and write a fragment shader that discards pixels outside the radius via something like `if...

If you want to process state changes on separate threads but still cleanly merge their results together, I think you need a CRDT. They are designed for exactly that purpose:...

Sorry for the late reply -- I plan on working on this soon. Right now you have to make a click listener and do the coordinate calculation yourself, but I...