swittk
swittk
Hi there, after a day of trying to understand what react-reconciler seems to do, and how the original v5 implementation worked, I've managed to get react-three-fiber to render on React...
@migupry Encountered this too. Your solution works, thanks! ~~But now I'm wondering when this bug in Expo's GLView started. SDK 39 doesn't have this bug (I have an old project...
Might be this change in THREE.JS from 2 months ago, since it's the only place in that [initGLContext()](https://github.com/mrdoob/three.js/blob/5dd3e7c36dd2f8d14290db0b072945927a4bcea7/src/renderers/WebGLRenderer.js#L270) function that seems to reference the GL context. It's in the WebGLState...
OK, now those lines are **definitely** the cause of this problem. Edit : Changed those mentioned lines to the original and now the bug is gone, I'm going to try...
This should be fixed with the next release of Three.JS 🎉
Tried using asset.uri instead of asset.localUri and Android works in debug mode, but when distributed via APK, it fails to load the uri due to it being local.. (file:///)
I'm wondering if this should be addressed here, or at https://github.com/software-mansion/react-native-screens? [`preferredScreenEdgesDeferringSystemGestures`](https://developer.apple.com/documentation/uikit/uiviewcontroller/2887512-preferredscreenedgesdeferringsys) is a method on UIViewController so I'm not sure if we should open an issue there instead.
Also interested in using an IndexedDB shim on React Native/Expo. (Just realized that Cloud Firestore wasn't doing Offline Persistence due to the lack of it) I've tried doing what was...
Thanks for the helpful info :) I've been trying to identify the issue this past afternoon and was looking into evaluateKeyPathOnValueToDecodedValue's implementation, and even considering testing the native Array.isArray implementation...
I'm so sorry, in my prior comment I wasn't logging the object correctly (logged clonedValue instead of _clonedValue). I've since edited the post. I've found that value and _clonedValue are...