2D Animation conflicts with spriteshape
(Running in Unity 2018.2.5f1)
I've recently downloaded the new 2D spriteshape package and everything seems to be fine but for some reason it keeps repeating a warning in the console that 2D Spriteshape conflicts with 2D animation i'm not sure if I should be concerned about this. Anyone know how to fix it?
Console Log: Packages/com.unity.2d.animation/Tests/Runtime/PlaceholderTests.cs' conflicts with: 'Packages/com.unity.2d.spriteshape/Tests/Runtime/PlaceholderTests.cs' (current owner) We can't assign a new GUID because the asset is in an immutable folder. The asset will be ignored.
Answer by JimmyCushnie · Nov 11, 2018 at 07:20 AM
I fixed it! the conflicts are with the Test folders, and we don't actually need those to use the packages. Find the location of one or both of the conflicting packages on disk (For me, SpriteShape was at C:\Users\Jimmy\AppData\Local\Unity\cache\packages\packages.unity.com\com.unity.2d.spriteshape@1.0.12-preview.1
) and delete both the tests folder and the corresponding meta file.
If you want to keep the tests, you can do the following:
find a conflicting file's meta file
make it NOT read only
open it with a text editor, manually change the GUID, save
make it read only again