My company has a Facebook game running that uses nGUI 2.5. I have upgraded to 2.7 and set all of the fonts to dynamic types.
Originally, there was no change to our Flash version of the game, but the fonts worked in our Web Player build.
Looking inside UIFont.cs I found this piece:
#if !UNITY_3_5 && !UNITY_FLASH
#define DYNAMIC_FONT
#endif
I removed && !UNITY_FLASH and the dynamic fonts have begun to load. However, I have run into these two issues:
1. The fonts are all suffering from a vertical displacement that draws the words slightly higher than center point.
2. At certain update cycles, the fonts u/v get changed and the fonts look garbled.
I know that Unity is pulling support from Flash. Does nGUI not support dynamic fonts in Flash?