Hermann Rolfes

Results 236 comments of Hermann Rolfes

This is interesting, I wonder how you test this, since its dependent on the JS engine? E.g. Chrome doesn't seem to support this: https://chromestatus.com/feature/5516876633341952 Debugger with stack trace: ![image](https://user-images.githubusercontent.com/5236548/145709227-9f0854ac-40ac-42ac-8b15-642bdc83c2aa.png) With...

IMO it's useless trying to get ioq3ded compiled via emscripten (bad for debugging, worse performance etc.). We can simply use the native udp dedi server and "websockify" it, like: `node...

@lklacar Oh well, that was more than a year ago. In that time I turned the latest ioq3 into WebAssembly myself and learned a great deal. But my project diverged...

@lklacar nice, you can also join ioquake3 discord http://wiki.ioquake3.org/Live_Chat

Anybody worked on something yet? WAVM and wasmjit only work on 64bit CPU, while the big JS engines (SpiderMonkey, v8, ChakraCore, JavaScriptCore) probably work on 32/64bit CPU's each. I guess...

Personally I like removing fluff from code, to make it as expressive in least amount of space. Never even realized that `**=`is possible, I like that one. There are three...

@willeastcott Its a special case, you can also write `2 ** -mipLevel`.

I'm not sure whats easiest on the eye, I read `0.5 ** mipLevel` as "half it a bunch of times" and it makes most sense to me to generate the...

> Can you provide a repro so we can investigate further? 1) Download https://github.com/playcanvas/playcanvas-gltf/archive/refs/heads/main.zip 2) Extract it in web server of choice (lighttpd, Apache2, ...) 3) Open `playcanvas-gltf-main/viewer/index.html` 4) Change...

Thank you for the quick resolution, it works perfectly! > In general I wonder how how the chunk system should handle invalid parameters like this... Since the error originated from...