Babulesnik
Member
|
Сhange of resolution of the display
I use D.full (true); also I deduce text D.text (1.20,0.95, S + "FPS:" + Time.fps ()); At change of resolution of the display-text drifts (((
How it is possible to avoid it?
What it is necessary to make for Russian support?
D.text (1.20,0.95, S + "ФПС:") writes - "????"
|
|
01-06-2011 10:21 PM |
|
Esenthel
Administrator
|
RE: Сhange of resolution of the display
you need to create font with russian characters (font maker in editor)
you can use D.w() and D.h() to get screen sizes
|
|
01-06-2011 10:42 PM |
|
Babulesnik
Member
|
RE: Сhange of resolution of the display
(01-06-2011 10:42 PM)Esenthel Wrote: you need to create font with russian characters (font maker in editor)
you can use D.w() and D.h() to get screen sizes
And manually under each resolution of the display to substitute parameters?
if ((D.w () == 1600) & (D.h () == 1000)) {x_pos=1.2; y_pos=0.5;}
And so more than 15 variants? There is more optimal decision? The formula can?
(This post was last modified: 01-09-2011 01:16 PM by Babulesnik.)
|
|
01-09-2011 01:15 PM |
|
Esenthel
Administrator
|
RE: Сhange of resolution of the display
Check the doc for screen coordinates
|
|
01-09-2011 01:21 PM |
|
Babulesnik
Member
|
RE: Сhange of resolution of the display
(01-09-2011 01:21 PM)Esenthel Wrote: Check the doc for screen coordinates
ok,senks
|
|
01-09-2011 01:31 PM |
|