Open cdesch opened 3 years ago
Your mileage may vary but I got this to work in expo 40 by adding these modules directly to my project with yarn add
"@pixi/core": "^6.0.0",
"@pixi/filter-alpha": "^6.0.0",
"@pixi/filter-blur": "^6.0.0",
The problem is in the package.json. expo-pixi
is pulling in whatever the latest version of pixi-filters
is:
"pixi-filters": "*",
Fixed in my project by forcing pixi-filters
to resolve to 3.1.1
with a Yarn resolution in my package.json
:
"resolutions": {
"pixi-filters": "3.1.1"
}
Hi, i have the same problem with expo 42.... i tried add "@pixi/core": "^6.0.0", "@pixi/filter-alpha": "^6.0.0", "@pixi/filter-blur": "^6.0.0", & "pixi-filters": "3.1.1"
but nothing...
have you any idea?
Hey @rbrogi, expo-pixi is super unmaintained and has many issues. I would suggest using something else.
I switched to react-native-signature-canvas. It has its own issues but does ultimately work.
@srmagura thanks so musch about the info.
we don't currently maintain this library because we don't have the time for it, but if someone would like to contribute and take over maintainership please let me know
@brentvatne @EvanBacon I'd be happy to maintain this package. I created a PR that fixes all of the major issues here. Please, feel free to contact me on hi@laniewski.me if you'd like to discuss. I am a hobbyist game developer, so I'll maintain my fork anyway.
@Bartozzz maybe you can also have a look at https://github.com/flyskywhy/react-native-pixi which also forked from here 😝
@brentvatne @EvanBacon I'd be happy to maintain this package. I created a PR that fixes all of the major issues here. Please, feel free to contact me on hi@laniewski.me if you'd like to discuss. I am a hobbyist game developer, so I'll maintain my fork anyway.
@Bartozzz , Is there a way I can use your fork with the Signature
component included?
The Signature
piece is the only thing I need pixi for.
@thargenediad I could, but I guess there's no point since this repository is dead and I won't have time to maintain my fork on my own. My recommendation for you is to copy my fork directly to your project and add the Signature component on your own – it should be pretty straightforward.
Unable to resolve module @pixi/core
using"expo": "~40.0.0",