My question is the "How to change the color of the HUD in place of gray color"
in below image their is hud and how to change the gray color replace with another off green color
Thanks in advance. Nimit Parekh.
Go to the Valorant settings. Click on General. Go to Accessibility. Change the Enemy Highlight Color option.
Under the section 'GUIColour,' you're looking for 'Standard' under the 'Default' heading in 'LocalisationName' tags. In the 'MatrixRed,' 'MatrixGreen,' and 'MatrixBlue' sections, you can edit the HUD color by entering numbers between 0 and 1.
MBProgressHUD is an iOS drop-in class that displays a translucent HUD with an indicator and/or labels while work is being done in a background thread. The HUD is meant as a replacement for the undocumented, private UIKit UIProgressHUD with some additional features.
MBProgressHUD *HUD = [[MBProgressHUD alloc] initWithView:self.navigationController.view];
HUD.color = [UIColor purpleColor];
...
Swift 3:
let hud:MBProgressHUD = MBProgressHUD.showAdded(to: self.view, animated: true)
hud.bezelView.color = UIColor.green // Your backgroundcolor
hud.bezelView.style = .solidColor // you should change the bezelview style to solid color.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With