Issue:
Currently Udon offers no way to get a VRCPlayerApi by the display name of a player.
If you do need to get a VRCPlayerApi by display name you currently need to get an array that contains all players and iterate over it until you find them. This isn't great as doing so is quite expensive in Udon.
Suggestion:
Add a
VRCPlayerAPI.GetPlayerByDisplayName(string displayName)
method, to allow us to quickly get someone's VRCPlayerApi through their display name.
This would make working with whitelists etc. a lot easier as those usually store display names.
·