Enum CanvasScaler.ScaleMode
Determines how UI elements in the Canvas are scaled.
Namespace: UnityEngine.UI
Assembly: UnityEngine.UI.dll
Syntax
public enum CanvasScaler.ScaleMode
Fields
Name | Description |
---|---|
ConstantPhysicalSize | Using the Constant Physical Size mode, positions and sizes of UI elements are specified in physical units, such as millimeters, points, or picas. |
ConstantPixelSize | Using the Constant Pixel Size mode, positions and sizes of UI elements are specified in pixels on the screen. |
ScaleWithScreenSize | Using the Scale With Screen Size mode, positions and sizes can be specified according to the pixels of a specified reference resolution. If the current screen resolution is larger than the reference resolution, the Canvas will keep having only the resolution of the reference resolution, but will scale up in order to fit the screen. If the current screen resolution is smaller than the reference resolution, the Canvas will similarly be scaled down to fit. |