Iam1337 / extOSC

extOSC is a tool dedicated to simplify creation of applications in Unity with OSC protocol usage.
MIT License
193 stars 25 forks source link

Errors when using through UPM #15

Closed cwnuk-lfl closed 3 years ago

cwnuk-lfl commented 3 years ago

When this package is included via UPM, these errors continually appear in the console:

Asset Packages/com.iam1337.extosc/CHANGELOG.md has no meta file, but it's in an immutable folder. The asset will be ignored.
Asset Packages/com.iam1337.extosc/LICENSE has no meta file, but it's in an immutable folder. The asset will be ignored.
Asset Packages/com.iam1337.extosc/README.md has no meta file, but it's in an immutable folder. The asset will be ignored.

This is on Unity 2019.4.12f1

cwnuk-lfl commented 3 years ago

It looks like those three files (Changelog, ReadMe, and License) are being added as part of your release process rather than in Unity. It seems like one option might be to include those files or dummy versions of them within the repo's Assets/extOSC directory, to then be overwritten by your release process? That would allow for the creation of meta files, while still allowing all three to be updated by release.

Iam1337 commented 3 years ago

Thanks, I added "dummy" files, maybe I'll do it better in the future.