Tim Krämer
Tim Krämer
Yes @charkour, you got the idea! The timeout is how I'm currently mitigating the issue, but it's not ideal - also it kind of prevents me from reusing the links...
both options are possible - I trust your instincts, which one would be "more beautiful" in a code structural sense. Instinctively I would think it's nicer to have this in...
If I can be of any help - I'd gladly take a look, if you'd give me a hint where to start :)
Hi I can confirm, I have forked your code-sandbox and reduced it even further: https://codesandbox.io/s/selective-bloom-bug-forked-yvt6p?file=/src/index.js just change `three` version in the dependency menu to anything higher than `0.134.0` and `SelectiveBloom`...
I'd really appreciate if this awesome kit also could handle modularized css. Unfortunately I'm not able to understand and modify the watchify/gulp workflow in a way to achieve this yet....
might be related to `import { Texture } from "pixi.js"` - I noticed, when adding this line to the "without" example it works
Thank you @nickthegroot for the fix! It does accept geometries - however a custom `lineBasicMaterial` seem to be ignored: ```jsx ``` **Edit:** custom `` is not needed anymore. A at...
> Same here. I found out that `google-auth-library` cause this problem. It has dependency `gaxios` and invoke method [googleapis/gaxios@`main`/src/gaxios.ts#L191](https://github.com/googleapis/gaxios/blob/main/src/gaxios.ts?rgh-link-date=2024-04-22T03%3A26%3A13Z#L191) with uppercase method URL, but it invoked in lowercase. I changed...
> @TimKraemer I changed this > > * const candidate = new url_1.URL(url); > > * const candidate = new url_1.Url(url); Thank you! This is the only thing, that worked...
Your log says: `pkg_resources.VersionConflict: (chardet 2.0.1 (/usr/lib/python2.7/dist-packages), Requirement.parse('chardet=3.0.2'))` that means, you need `chardet` in a version between `3.0.2` and `3.1.0`. You can install it by typing the following line in...