react-three-editable
react-three-editable copied to clipboard
⚠️ Moved! See @theatre/r3f and the theatre-js/theatre repo for the new version with animation tools! Link below 👇 Edit your react-three-fiber scene with a visual editor without giving up control over...
Things like - [x] display overlay icons - [x] show/hide grid - [x] show/hide axes - [ ] bounding box color - [ ] grid color - [ ] grid...
We could and we should support prefabs with overrides. I was thinking of the following API: ```tsx const MyPrefab = prefab("My Prefab", ReactComponentContainingEditables); const MyOtherPrefab = prefab("My Other Prefab", SomeOtherReactComponentContainingEditables);...
Add a gif to README illustrating its use, clarify API, add examples, etc.
Right now r3e is driven by a global runtime. This makes it impossible to publish r3f components using r3e as isolated components. These components should be able to have their...
An unnecessary limitation of the current implementation is that you can only use it with a single canvas. This could be solved by letting `EditorConnector` accept a uniqueName parameter to...