VRChatUnityThings icon indicating copy to clipboard operation
VRChatUnityThings copied to clipboard

Add scripts to a namespace

Open BlueAmulet opened this issue 9 months ago • 0 comments

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.

BlueAmulet avatar Sep 18 '23 00:09 BlueAmulet