jugglingcats
jugglingcats
It was a pain to identify the offending component (`react-datetime` in my case), but I found the workaround from @aleclarson and @barankyle worked for me. It would be great if...
I'm sure you are much more qualified to move that discussion forward! :)
Thanks for the quick reply! TextGeometry might work but the example I saw is also quite nice (in my naive opinion): https://github.com/nraynaud/webgcode/blob/gh-pages/webapp/cnc/ui/cubeManipulator.js
@Colmea that looks very interesting -- thanks for sharing!
My error was due to using wrong THREE version, so that is resolved. I also managed to get TS compile errors to be reduced significantly by adding the following to...
I agree it would be great to have prop/attribute validation and auto-complete in the IDE and this is one of the main benefits of using Typescript IMO. I am not...
For info I already found a name clash: `line` is defined as type `React.SVGProps`. It runs :) but compiler and IDE complain :(
I don't understand very much about renderers, but presumably a single component could use React3 and SVG, eg: ``` render() { return ( ... ... ) } ```
Heheh. I tend to agree! I thought more about what you said and I think what you need is a way to say "The React3 component doesn't contain JSX.IntrinsicElements but...
Interesting approach...! I assume it works fine when you have nested react-three-renderer components, even though you are introducing an intermediate element into the component tree? There would be a small...