Hi, I'm developing a project using NGUI 3.8.0, and I'm running into a frustrating problem. My Android .apk file is over 50 MB in size, so I'm using Unity's Split Application Binary to generate a .obb file. On my preloader screen, I have code in place to check if the .obb file is present, and if it's not, a UILabel with a message will be displayed asking the user if they want to download the .obb file now. However, the problem that I'm running into is that no matter what settings I have in place, the text for this message is displayed as black text. I know it's not my settings, because if I force this popup to appear when the .obb file IS present, it displays correctly (as white). So whatever code is responsible for coloring text must be present in the .obb file itself. Everything else with NGUI works correctly when the .obb is absent (or at least, everything else I need - localization, displaying text at all, displaying sprites, tweening) but the text will not change color. Is there any way to force the color to change somehow, or force that code to be included in the .obb? Has anyone else ever seen this problem?
EDIT: My labels' fonts are dynamic. I discovered that switching to UIFonts fixed the coloring problem; however, I can't actually switch all my fonts to UIFonts because one of my fonts has lots of special characters for other languages, and NGUI's font building system does not seem to support that. I need a way to make this work with dynamic fonts.