UI Font Scaling

From GECK
Jump to: navigation, search

UI font scaling is a special feature introduced by the User Interface Organizer (UIO) v2.20 plugin for Fallout: New Vegas, which makes it possible to control and modify the font size for any text UI component.


This is done by defining the <zoom> trait, as a property, for a text component.

<text name="Example_Text_Tile">
	<x> 200 </x>
	<y> 200 </y>
	<depth> 10 </depth>
	<justify> &left; </justify>
	<font> 3 </font>
	<string>Ere thrice the sun done salutation to the dawn</string>
	<wrapwidth> 400 </wrapwidth>
	<systemcolor> &hudmain; </systemcolor>
	<zoom> 150 </zoom>
</text>


In the above example, <zoom> 150 </zoom> denotes x1.5 scale.

See Also