Matt Rossman

Results 73 comments of Matt Rossman

Unfortunately the `useDatabaseObjectData` workaround doesn't seem to support filtering with `query()` as shown here: https://github.com/FirebaseExtended/reactfire/blob/9429194d9dfed9a4b37129661d230ebcd0071e89/docs/use.md#show-a-list-of-data For example, when I subscribe to `query(myRef, limitToFirst(1))` with `useDatabaseObjectData` I receive all children instead...

I gotchu. I actually still face this issue but it's not A-Frame's fault. > Unless the Mac shortcut is taken for something This was the cause for me. It seems...

Hey @Solid-Ice8 thanks for the response, but I think there's some misunderstanding. I have two separate Google accounts, one for School and one for Personal. Each is signed into their...

I feel like "Default to container A" most clearly describes what I want, because the only intervention it should enforce is "Default" --> "A" (literally, from default to A). Or...

I think we should add a check here if `container` is an `instanceof THREE.Scene`, otherwise forward the existing `state.scene`. This would also remove the need for the `as THREE.Scene` type...

I can appreciate the value in providing access to the root object. However, some components rely on scene-specific behavior, so access to the root Object3D isn't always sufficient. The `useThree`...

Here is a utility I am using as a workaround: ```ts /** * Get the nearest THREE.Scene ancestor, or null */ function useScene() { const { scene: root } =...

This is sorta already possible by controlling the `value` and `onValueChanged` props of the slider. However the issue I face with controlling the slider values is that the thumbs will...

The automatic reordering of value makes it pretty much impossible to reliably control the value of a specific thumb. For instance if you have three thumbs, there's no way to...

React Aria uses an `index` prop on the slider thumb to specify a thumb's ordering in the value array https://react-spectrum.adobe.com/react-aria/Slider.html#sliderthumb