Legacy Documentation: Version 2017.2 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

EditorGUIUtility.PointsToPixels

Description

Convert from point space to pixel space.

Use this for determining the resolution and positioning of custom GUI content, such as render textures.

See Also: PixelsToPoints, pixelsPerPoint.


public static Vector2 PointsToPixels(Vector2 position);

Parameters

position A GUI rect measured in points.

Returns

Vector2 A rect representing the same area in pixels.

Description

Convert a Rect from point space to pixel space.


public static Rect PointsToPixels(Rect rect);

Parameters

rect A GUI position in point space.

Returns

Rect The same position in pixel space.

Description

Converts a position from point to pixel space.

对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答