Ulrich-Matthias Schäfer
Ulrich-Matthias Schäfer
@szdziedzic so i came up with something and it looks like it should just work ™️ but it doesnt: ```js export const abiList = ["armeabi-v7a", "arm64-v8a", "x86", "x86_64"]; export function...
Please use the esm package. I removed the support for csm to lower the burden of maintenance for me. There is a section in the readme on how to use...
I encountered the same problem. What might work is also registering events on html (before initializing pixi) and call `e.stopImmediatePropagation()` when the event is not coming from the canvas (or...
So the reason why nothing was moving was because `.clamp()` restricted it from doing so. Removing the line "fixed" it. However, now I dont have clamping anymore
The change looks solid. I am actually lot sure what type the color has. We only included the feDropShadow interface in the types because it wasn't in the official typescript...
If you are creating a reusable filter, you have to make sure, that it is attached to the defs. To be honest i am quite suprised why it works when...
The IDE should give you the correct typings if `myFilter` is a `` object. The typings with missing "in" is for chaining of filters which is not applicable here. Is...
And your IDE gives you the wrong types? This is from the types file: https://github.com/svgdotjs/svg.filter.js/blob/6dcc97d347a38be0a780568c17e8ef6371bb9531/svg.filter.js.d.ts#L35 As you can see, instance methods of filter have the in property as first parameter....
weird. you are writing javascript right now. Maybe phpstorm mixes it up? You could try to use typescript instead. I cannot find a mistake in the code tho. // EDIT:...
I think the problem is, that phpstorm can only do type-guessing here because you are not using typescript but javascript. So it tries to help as best as it can...