The Size component allows you to set width
and height
properties and define the relationship between them.
The component can automatically maintain the aspect ratios between the two values, and clamp them to a defined min-max range. You can also control the dominant axis. When dimensions are given to the Size component that would cause it to exceed its min-max range, the dimensions are adjusted based on the dominant axis.
new Size([width], [height], [aspectMode], [parent])
name | type | arguments | Default | description |
---|---|---|---|---|
width | number | <optional> | 0 |
The width of the Size component. |
height | number | <optional> | width |
The height of the Size component. If not given, it will use the |
aspectMode | number | <optional> | 0 |
The aspect mode of the Size component. Defaults to 0, no mode. |
parent | any | <optional> | null |
The parent of this Size component. Can be any object with public |
The width and height are automatically adjusted to make the size cover the entire target area while keeping the aspect ratio. This may extend further out than the target size.
The width and height are automatically adjusted to fit inside the given target area, while keeping the aspect ratio. Depending on the aspect ratio there may be some space inside the area which is not covered.
The width is automatically adjusted based on the height.
Do not make the size fit the aspect ratio. Change the ratio when the size changes.
The height is automatically adjusted based on the width.
The aspect mode this Size component will use when calculating its dimensions.
This property is read-only. To change it use the setAspectMode
method.
The proportional relationship between the width and height.
This property is read-only and is updated automatically when either the width
or height
properties are changed,
depending on the aspect mode.
The height of this Size component.
This value is clamped to the range specified by minHeight
and maxHeight
, if enabled.
A height can never be less than zero.
Changing this value will automatically update the width
if the aspect ratio lock is enabled.
You can also use the setHeight
and getHeight
methods.
The maximum allowed height.
This value is read-only. To change it see the setMax
method.
The maximum allowed width.
This value is read-only. To change it see the setMax
method.
The minimum allowed height.
Cannot be less than zero.
This value is read-only. To change it see the setMin
method.
The minimum allowed width.
Cannot be less than zero.
This value is read-only. To change it see the setMin
method.
A Vector2 containing the horizontal and vertical snap values, which the width and height are snapped to during resizing.
By default this is disabled.
This property is read-only. To change it see the setSnap
method.
The width of this Size component.
This value is clamped to the range specified by minWidth
and maxWidth
, if enabled.
A width can never be less than zero.
Changing this value will automatically update the height
if the aspect ratio lock is enabled.
You can also use the setWidth
and getWidth
methods.
The current width
and height
are adjusted to fit inside the given dimensions, while keeping the aspect ratio.
If fit
is true there may be some space inside the target area which is not covered if its aspect ratio differs.
If fit
is false the size may extend further out than the target area if the aspect ratios differ.
If this Size component has a parent set, then the width and height passed to this method will be clamped so it cannot exceed that of the parent.
name | type | arguments | Default | description |
---|---|---|---|---|
width | number | <optional> | 0 |
The new width of the Size component. |
height | number | <optional> |
The new height of the Size component. If not given, it will use the width value. |
|
fit | boolean | <optional> | true |
Perform a |
This Size component instance.
Copies the aspect mode, aspect ratio, width and height from this Size component to the given Size component. Note that the parent, if set, is not copied across.
name | type | description |
---|---|---|
destination | Phaser.Structs.Size |
The Size component to copy the values to. |
The updated destination Size component.
Destroys this Size component.
This clears the local properties and any parent object, if set.
A destroyed Size component cannot be re-used.
The current width
and height
are adjusted so that they fully envelope the given dimensions, while keeping the aspect ratio.
The size may extend further out than the target area if the aspect ratios differ.
If this Size component has a parent set, then the values are clamped so that it never exceeds the parent on the longest axis.
name | type | arguments | description |
---|---|---|---|
width | number | <optional> |
The new width of the Size component. |
height | number | <optional> |
The new height of the Size component. If not given, it will use the width value. |
This Size component instance.
The current width
and height
are adjusted to fit inside the given dimensions, while keeping the aspect ratio.
There may be some space inside the target area which is not covered if its aspect ratio differs.
If this Size component has a parent set, then the width and height passed to this method will be clamped so it cannot exceed that of the parent.
name | type | arguments | description |
---|---|---|---|
width | number | <optional> |
The new width of the Size component. |
height | number | <optional> |
The new height of the Size component. If not given, it will use the width value. |
This Size component instance.
Takes a new height and passes it through the min/max clamp and then checks it doesn't exceed the parent height.
name | type | arguments | Default | description |
---|---|---|---|---|
value | number |
The value to clamp and check. |
||
checkParent | boolean | <optional> | true |
Check the given value against the parent, if set. |
The modified height value.
Takes a new width and passes it through the min/max clamp and then checks it doesn't exceed the parent width.
name | type | arguments | Default | description |
---|---|---|---|---|
value | number |
The value to clamp and check. |
||
checkParent | boolean | <optional> | true |
Check the given value against the parent, if set. |
The modified width value.
Sets a new width and height for this Size component and updates the aspect ratio based on them.
It doesn't change the aspectMode
and still factors in size limits such as the min max and parent bounds.
name | type | arguments | Default | description |
---|---|---|---|---|
width | number |
The new width of the Size component. |
||
height | number | <optional> | width |
The new height of the Size component. If not given, it will use the |
This Size component instance.
Sets the aspect mode of this Size component.
The aspect mode controls what happens when you modify the width
or height
properties, or call setSize
.
It can be a number from 0 to 4, or a Size constant:
Calling this method automatically recalculates the width
and the height
, if required.
name | type | arguments | description |
---|---|---|---|
value | number | <optional> |
The aspect mode value. |
This Size component instance.
Sets a new aspect ratio, overriding what was there previously.
It then calls setSize
immediately using the current dimensions.
name | type | description |
---|---|---|
ratio | number |
The new aspect ratio. |
This Size component instance.
Sets the values of this Size component to the element.style.width
and height
properties of the given DOM Element. The properties are set as px
values.
name | type | description |
---|---|---|
element | HTMLElement |
The DOM Element to set the CSS style on. |
Sets the height of this Size component.
Depending on the aspect mode, changing the height may also update the width and aspect ratio.
name | type | description |
---|---|---|
height | number |
The new height of the Size component. |
This Size component instance.
Set the maximum width and height values this Size component will allow.
Setting this will automatically adjust both the width
and height
properties to ensure they are within range.
Note that based on the aspect mode, and if this Size component has a parent set or not, the maximums set here can be exceed in some situations.
name | type | arguments | Default | description |
---|---|---|---|---|
width | number | <optional> | Number.MAX_VALUE |
The maximum allowed width of the Size component. |
height | number | <optional> | width |
The maximum allowed height of the Size component. If not given, it will use the |
This Size component instance.
Set the minimum width and height values this Size component will allow.
The minimum values can never be below zero, or greater than the maximum values.
Setting this will automatically adjust both the width
and height
properties to ensure they are within range.
Note that based on the aspect mode, and if this Size component has a parent set or not, the minimums set here can be exceed in some situations.
name | type | arguments | Default | description |
---|---|---|---|---|
width | number | <optional> | 0 |
The minimum allowed width of the Size component. |
height | number | <optional> | width |
The minimum allowed height of the Size component. If not given, it will use the |
This Size component instance.
Sets, or clears, the parent of this Size component.
To clear the parent call this method with no arguments.
The parent influences the maximum extents to which this Size component can expand, based on the aspect mode:
NONE - The parent clamps both the width and height. WIDTH_CONTROLS_HEIGHT - The parent clamps just the width. HEIGHT_CONTROLS_WIDTH - The parent clamps just the height. FIT - The parent clamps whichever axis is required to ensure the size fits within it. ENVELOP - The parent is used to ensure the size fully envelops the parent.
Calling this method automatically calls setSize
.
name | type | arguments | description |
---|---|---|---|
parent | any | <optional> |
Sets the parent of this Size component. Don't provide a value to clear an existing parent. |
This Size component instance.
Sets the width and height of this Size component based on the aspect mode.
If the aspect mode is 'none' then calling this method will change the aspect ratio, otherwise the current aspect ratio is honored across all other modes.
If snapTo values have been set then the given width and height are snapped first, prior to any further adjustment via min/max values, or a parent.
If minimum and/or maximum dimensions have been specified, the values given to this method will be clamped into that range prior to adjustment, but may still exceed them depending on the aspect mode.
If this Size component has a parent set, and the aspect mode is fit
or envelop
, then the given sizes will
be clamped to the range specified by the parent.
name | type | arguments | Default | description |
---|---|---|---|---|
width | number | <optional> | 0 |
The new width of the Size component. |
height | number | <optional> | width |
The new height of the Size component. If not given, it will use the |
This Size component instance.
By setting snap values, when this Size component is modified its dimensions will automatically be snapped to the nearest grid slice, using floor. For example, if you have snap value of 16, and the width changes to 68, then it will snap down to 64 (the closest multiple of 16 when floored)
Note that snapping takes place before adjustments by the parent, or the min / max settings. If these values are not multiples of the given snap values, then this can result in un-snapped dimensions.
Call this method with no arguments to reset the snap values.
Calling this method automatically recalculates the width
and the height
, if required.
name | type | arguments | Default | description |
---|---|---|---|---|
snapWidth | number | <optional> | 0 |
The amount to snap the width to. If you don't want to snap the width, pass a value of zero. |
snapHeight | number | <optional> | snapWidth |
The amount to snap the height to. If not provided it will use the |
This Size component instance.
Sets the width of this Size component.
Depending on the aspect mode, changing the width may also update the height and aspect ratio.
name | type | description |
---|---|---|
width | number |
The new width of the Size component. |
This Size component instance.
Returns a string representation of this Size component.
A string representation of this Size component.