FontSettings.xml 883 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="us-ascii"?>
  2. <AssetDeclaration xmlns="uri:ea.com:eala:asset">
  3. <!-- Default settings for fonts used in game
  4. The "FontDefaultSettings" tag is followed by the name of the font for
  5. which it specifies settings and an optional setting indicating a point size.
  6. If the point size is omitted, then the settings apply to all sizes of the
  7. specified font.
  8. The available settings are:
  9. "Antialiased": Indicates that the game should specifically antialias the
  10. specified font.
  11. -->
  12. <FontDefaultSetting Name="SachaWynter" id="SachaWynter">
  13. <Settings AntiAliased="true" />
  14. </FontDefaultSetting>
  15. <FontDefaultSetting Name="FixedSys" id="FixedSys">
  16. <Settings AntiAliased="false" />
  17. </FontDefaultSetting>
  18. <FontDefaultSetting Name="Courier New" id="CourierNew">
  19. <Settings AntiAliased="false" />
  20. </FontDefaultSetting>
  21. </AssetDeclaration>