You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
None of the scripts in this repository seem to use a namespace, this can lead to conflicts with other C# code in the event that they happen to use the same class name, even if the other class is in a namespace.
An actual example of this is compilation errors with this and BetterPlayerAudio, due to both packages containing a class called PlayerList. I had to force resolve the class by adding the full type name.
The text was updated successfully, but these errors were encountered:
None of the scripts in this repository seem to use a namespace, this can lead to conflicts with other C# code in the event that they happen to use the same class name, even if the other class is in a namespace.
An actual example of this is compilation errors with this and BetterPlayerAudio, due to both packages containing a class called PlayerList. I had to force resolve the class by adding the full type name.
The text was updated successfully, but these errors were encountered: