Выберите подходящий для вас язык программирования. Все примеры кода будут представлены на выбранном языке.
Благодарим вас за то, что вы помогаете нам улучшить качество документации по Unity. Однако, мы не можем принять любой перевод. Мы проверяем каждый предложенный вами вариант перевода и принимаем его только если он соответствует оригиналу.
ЗакрытьПо определённым причинам предложенный вами перевод не может быть принят. Пожалуйста <a>попробуйте снова</a> через пару минут. И выражаем вам свою благодарность за то, что вы уделяете время, чтобы улучшить документацию по Unity.
ЗакрытьSpecifies logical orientation of the screen.
Default value is taken from the 'Default Orientation' in Player Settings.
As an example, if we take 480x320 resolution on iPhone, horizontal
orientation is treated as 480x320 resolution and vertical orientation
as 320x480.
Note: logical orientation affects not only screen orientation, but
also touch coordinates. You should expect drastic changes in the touch
positions after changing logical orientation, since touch positions
will be rotated clockwise or counter-clockwise to match screen
coordinates.
Currently screen orientation is only relevant on mobile platforms.
// Start in landscape mode function Start () { Screen.orientation = ScreenOrientation.LandscapeLeft; }
If the value is set to ScreenOrientation.AutoRotation then the screen will select from any of the options (enabled by autorotateToPortrait, etc) automatically as the device orientation changes.
See Also: ScreenOrientation.