Just playing with the new font features. I like!
SetErrorMode(2)
// set window properties
SetWindowTitle( "Unicode" )
SetWindowSize( 1024, 768, 0 )
SetClearColor(140,140,255)
// set display properties
SetVirtualResolution( 1024, 768 )
SetOrientationAllowed( 1, 1, 1, 1 )
`SetSyncRate( 60, 0 )
UseNewDefaultFonts( 1 ) // use new fonts that can display more characters
CreateText( 1, "Iñtërnâtiônàlizætiøn" )
CreateText( 2, "Iñtërnâtiônàlizætiøn" )
SetTextPosition( 1, 512,300 )
SetTextPosition( 2, 515,305 )
SetTextSize( 1, 50 )
SetTextSize( 2, 50 )
SetTextAlignment( 1, 1 )
SetTextAlignment( 2, 1 )
SetTextColor(2,0,0,0,255)
SetTextDepth(1,1)
SetTextDepth(2,2)
r#= 0.0
do
r#=r#+1
SetTextAngle(1,r#)
SetTextAngle(2,r#)
Print( ScreenFPS() )
Sync()
loop