lunchboxjs
lunchboxjs copied to clipboard
Declarative ThreeJS via web components
Does lunchbox support multiple lunchbox app instances inside the same HTML application without using iframes?
- [ ] Clean up code and import types where available - [ ] Automate testing bundle size - [ ] Cypress/other tests
Codesandbox demos sometimes break
Plain `v-xyz` directives work, passing bindings via `:v-xyz="1"` throw "no property v.xyz found on object" error. See `updateObjectProp` in associated branch for connected TODO.
Should work, but doesn't: ```html ``` Same for scenes and renderers
**Problem**: User wants to load a model and work with the `scene.children` individually. In Lunchbox, the `gltf` plugin handles loading and adding a model to a scene, but the object...
Hi there, another fresh idea, we could use https://histoire.dev/ for the examples instead of a local vite server. ;) R3F does the same with Storybook. I think is a brilliant...
Vitejs have a lib mode for build https://vitejs.dev/guide/build.html#library-mode that uses rollup underhood. ``` //vite.config.ts export default defineConfig({ plugins: [vue(), glsl(), vueJsx()], build: { lib: { entry: resolve(__dirname, 'src/index.ts'), name: 'lunchboxjs',...