static Color32 GetTrustLevelColor(VRC.Core.APIUser user) { #if VRC_CLIENT Color32 color = new Color32(255, 255, 255, 255); if (user == null) { return(color); } if (user == VRC.Core.APIUser.CurrentUser) { color = VRCInputManager.showSocialRank ? VRCPlayer.GetColorForSocialRank(user) : VRCPlayer.GetDefaultNameplateColor(user, user.hasVIPAccess); } else { color = VRCPlayer.ShouldShowSocialRank(user) ? VRCPlayer.GetColorForSocialRank(user) : VRCPlayer.GetDefaultNameplateColor(user, user.hasVIPAccess); } return(color); #else // we are in sdk, this is not meaningful anyway return((Color32)Color.grey); #endif }