Kal Erikson
Kal Erikson
Just adding an outsider perspective. I've dealt with the OP's problem (background jumps to top when opening modal) with vanilla JS modals and the culprit is often the `` and...
I'm interested in this too!
This would help a lot! Using the presets is powerful and takes you far for quick app building, but the moment you want to tweak a "scene" such that everything...
Re: your specific concern > The feature I wanted to add to my app is to `v-for` loop through an array and give each item a different `delay` based on...
In my use case (3d dice rolling), material friction seems to be a factor to minimize motion jitter. Too high (e.g. friction = 1) and objects get stuck into a...
> Another use case for such alias is having components created with :is="component" where you create completely different components with different internal logic, but you pass data inside of such...
I'm experiencing the same issue; using `2.0.4`. **FAILS:** Changes to `splashBackgroundColor` have no affect; all I ever see on the Android device is a solid background splash being white or...
Ok I have a workaround, and some discoveries: 1 - Testing on Pixel 2 with API 30, the splash works. I've learned this is using the old splash way, prior...
Getting into multiple passwords and multiple routes seems like growing scope of this simple module... Anyhow, there's many ways to peel-an-orange, and I would think some parent-child relationship is clearer...
While other solutions may work, waiting a beat with Vue's `nextTick` is all I've needed to solve "no target" type of errors with `teleport`: Roughly: ``` import { ref, onMounted,...