intelligide / assimp-unity

Assimp for C# / Unity
https://intelligide.github.io/assimp-unity/
MIT License
36 stars 7 forks source link

Unity is unable to resolve packages from manifest file #11

Closed jajanpreet closed 1 year ago

jajanpreet commented 1 year ago

Hi I am trying to integrate this library into my Unity project but I get the following error

An error occurred while resolving packages: Project has invalid dependencies: com.frozenstorminteractive.assimp: Package [com.frozenstorminteractive.assimp@4.1.0] cannot be found com.frozenstorminteractive.assimp.linux: Package [com.frozenstorminteractive.assimp.linux@4.1.0] cannot be found com.frozenstorminteractive.assimp.windows: Package [com.frozenstorminteractive.assimp.windows@4.1.0] cannot be found

intelligide commented 1 year ago

I was a little too fast on the documentation, version 4.1.0 is not yet available in stable version. But it is possible to use the preview 1 (it should work on Windows, Linux and Android, I will soon test on Mac and iOS.):

"dependencies": {
  ...
  "com.frozenstorminteractive.assimp": "4.1.0-pre.1",
  "com.frozenstorminteractive.assimp.windows": "4.1.0-pre.1",
  "com.frozenstorminteractive.assimp.linux": "4.1.0-pre.1",
}
...
jajanpreet commented 1 year ago

Thanks for your response. Solved my problem