Matt Hargett
Matt Hargett
As we approach the next phase of our product, which includes bringing Babylon React Native to visionOS, Spatial Audio is a need that we have. What can we do at...
Let me and @hmallen99 know when this is out of draft and we can integration test with our BabylonJS XR app on Quest 2/3, Pico 4, and Apple Vision Pro...
Did some testing on Pico 4, and there's a glitch that may be the Pico's fault. I had to reboot the device to be able to run any more demos....
It looks like the bundle size check is failing for unrelated reasons. With Xcode 15.2 officially released now with visionOS support, it would be great to get this merged so...
I think I ran into the same problem when trying to optimize avatars from the 100avatars.com website, there were gaps and aliasing in some of the models after optimizing their...
Can you add a unit test?
I think this is fixed in latest full-moon and therefore Selene release.
another example, to make sure the future fix is reasonably generic: ``` error[incorrect_standard_library_use]: standard library function `UDim.new` requires 0 parameters, 4 passed ┌─ src\Cer.spec.lua:79:12 │ 79 │ width = UDim.new(1,...
maybe checking for a `require.*[rR]eact.*` pattern in the file to determine whether to use this library-specific check in the file at all? Might help weed out the majority of the...
some additional test cases: ```lua while foo and foo or bar do end ``` ```lua while foo or foo and bar do end ``` ```lua repeat --[[...]] until not foo...