Azurency / CQUI_Community-Edition

Civilization 6 mod - UI enhancements, reduce clicks and manage your empire faster!
MIT License
399 stars 98 forks source link

Black Text for Buying with Gold/faith in City View #399

Closed AlecBraithwaite closed 5 years ago

AlecBraithwaite commented 5 years ago

Describe the bug The numbers for buying buildings or units with gold or faith are black, which makes them almost impossible to read. Is there a setting for this somewhere?

To Reproduce Play with Any civ

Expected behavior White text instead of black

Screenshots https://i.imgur.com/G4CEmT2.png

General informations Windows, No other mods

Save game and logs JADWIGA 1 4000 BC.Civ6Save.txt

op1ekun commented 5 years ago

Same here, I've just downloaded the mod, but it's impossible to use it in its current state :(

ubereffect commented 5 years ago

Issue still present in latest version posted on GitHub just under 12 hours ago. I'm running a fresh game, with no other mods, and I've unsubscribed to Steam version of CQUI to avoid conflict.

ubereffect commented 5 years ago

To quote eudaimonia, the author of Concise UI:

here's some examples for how to set color use new functions:

old version:

  1. Controls.instance:SetColor(0xFFFFFFFF);
  2. Controls.instance:SetColor("COLOR_RED");
  3. Controls.instance:SetColorByName("RED");

new version:

  1. Controls.instance:SetColor(UI.GetColorValueFromHexLiteral(0xFFFFFFFF));
  2. Controls.instance:SetColor(UI.GetColorValue("COLOR_RED"));
  3. Controls.instance:SetColorByName("RED");
ubereffect commented 5 years ago

Probably a better reference would be to search the change log posted at Azurency/Civ6-UIFiles@14e657f for the word color.

Seems like the most annoying bug I've encountered so far, and likely the easiest to fix.