Tom Brückner
Tom Brückner
I was able to speed things up drastically: ```cs private int[][] GetPixelsFast(Texture2D sourceImage, int quality, bool ignoreWhite, int mipLevel) { var mipData = sourceImage.GetPixels32(mipLevel); var pixelCount = mipData.Length; // Store...
That's the very first issue, but it hasn't been resolved yet. Did anyone try to implement this yet? We have a use-case where compound indexes are important.
> I wish I could be more helpful. Sorry. No prob. I solved this by setting the index using collection._ensureIndex() now, and it worked fine, both locally and on MongoDB...
I just tried to integrate this RN package: `npmjs.com/package/@meteorrn/core` which requires AsyncStorage: `@react-native-async-storage/async-storage@>=1.8.1` I had to "force" install the packages, since they are not built for the react-native version you're...
Thanks for the super-fast response, highly appreciated. I'll have a look at the blog post!
The approach you decribed in your blog worked. However, the package also soft-requires `@react-native-community/netinfo`, which in turn requires CoreTelephony to detect connection breakups. That's not supported by visionOS, however. So...
Currently updating my app to Meteor 3. Will Meteor.loginWithPassword() still work there? BTW: There's also other methods that do not have an async version yet, like those: https://github.com/meteor/meteor/blob/f13784a1a831d537f47341585adaabf4c112f573/packages/accounts-base/accounts-base.d.ts#L111 or `Accounts.applyLoginFunction`...
> @derwaldgeist yes, it should work without change. Thanks for the super fast response!