Pawel
Pawel
`processFileSync` was an error. Here's a fix https://github.com/adamreisnz/replace-in-file/pull/148
When setting needsUpdate, updateRange is used to limit the update only to given range of elements. i.e. there are 50 instances and when you update instance 31 you don't want...
I found a problem when setting an updateRange multiple times before the renderer sends the changes to the GPU. In the code below all the fixes are contained to not...
Desperately needed feature, ideally not just selected programs but all available in App Grabber should be accessible this way
In the two comparisons `dist > contact_threshold` there may be `abs` needed on `dist`s and/or square roots(or normalization if this is about angles not distances?) on `proj_distPt` and `proj_distTr`.
In some circumstances `triangle_normal_world` can have 0,0,0 values after `( v1 - v0).cross(v2 - v0)` and normalizing in the next line causes it to turn into NaNs. Maybe it's due...
Will it be possible to build WASM without SIMD for backwards compatibility? iPhones are still not supporting it. Looking how targets are built it would have to be a target...
It's not just Safari. On iOS devices all browsers including Chrome are forced to use WebKit instead of their own engines. Hopefully Apple will bring SIMD support soon but I...
Ok so building with -DXE_ENABLED=FALSE seems to be a workaround but it's not good enough if someone is using a pre-built version. i.e. version 18dev has both WASM and XE...
Hi Erich, thanks for your answer! You get it correctly. I'm talking about baking. I guess this is the brute force method you're talking about https://threejs.org/examples/webgl_simple_gi.html and indeed it takes...