@quenty/gamescalingutils 13.18.4-canary.559.9f38947.0 → 13.19.0-canary.0a5db80.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -3,20 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
# [13.19.0-canary.0a5db80.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/gamescalingutils@13.18.2...@quenty/gamescalingutils@13.19.0-canary.0a5db80.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
* Additional type checking updates ([
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## [13.18.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/gamescalingutils@13.18.2...@quenty/gamescalingutils@13.18.3) (2025-04-10)
|
|
18
|
-
|
|
19
|
-
**Note:** Version bump only for package @quenty/gamescalingutils
|
|
11
|
+
* Additional type checking updates ([7e008c5](https://github.com/Quenty/NevermoreEngine/commit/7e008c58547bd00b5904e56541454a38c8d72ccc))
|
|
20
12
|
|
|
21
13
|
|
|
22
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/gamescalingutils",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.19.0-canary.0a5db80.0",
|
|
4
4
|
"description": "Scale ratios for the UI on different devices",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"access": "public"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@quenty/baseobject": "10.
|
|
32
|
-
"@quenty/blend": "12.
|
|
33
|
-
"@quenty/instanceutils": "13.
|
|
34
|
-
"@quenty/loader": "10.
|
|
35
|
-
"@quenty/rx": "13.
|
|
36
|
-
"@quenty/valueobject": "13.
|
|
31
|
+
"@quenty/baseobject": "10.9.0-canary.0a5db80.0",
|
|
32
|
+
"@quenty/blend": "12.19.0-canary.0a5db80.0",
|
|
33
|
+
"@quenty/instanceutils": "13.18.0-canary.0a5db80.0",
|
|
34
|
+
"@quenty/loader": "10.9.0-canary.0a5db80.0",
|
|
35
|
+
"@quenty/rx": "13.18.0-canary.0a5db80.0",
|
|
36
|
+
"@quenty/valueobject": "13.18.0-canary.0a5db80.0"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "0a5db8004684dc3e76fd5944599a22602d48cfa9"
|
|
39
39
|
}
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
local require = require(script.Parent.loader).load(script)
|
|
7
7
|
|
|
8
8
|
local BaseObject = require("BaseObject")
|
|
9
|
-
local Observable = require("Observable")
|
|
10
9
|
local Rx = require("Rx")
|
|
11
10
|
local RxInstanceUtils = require("RxInstanceUtils")
|
|
12
11
|
local ValueObject = require("ValueObject")
|
|
12
|
+
local Observable = require("Observable")
|
|
13
13
|
|
|
14
14
|
local GameScalingHelper = setmetatable({}, BaseObject)
|
|
15
15
|
GameScalingHelper.ClassName = "GameScalingHelper"
|
|
@@ -102,4 +102,4 @@ function GameScalingHelper.SetScreenGui(self: GameScalingHelper, screenGui: Scre
|
|
|
102
102
|
return self:SetAbsoluteSize(RxInstanceUtils.observeProperty(screenGui, "AbsoluteSize"))
|
|
103
103
|
end
|
|
104
104
|
|
|
105
|
-
return GameScalingHelper
|
|
105
|
+
return GameScalingHelper
|
|
@@ -9,9 +9,9 @@ local require = require(script.Parent.loader).load(script)
|
|
|
9
9
|
local GuiService = game:GetService("GuiService")
|
|
10
10
|
|
|
11
11
|
local Blend = require("Blend")
|
|
12
|
-
local Observable = require("Observable")
|
|
13
12
|
local Rx = require("Rx")
|
|
14
13
|
local RxInstanceUtils = require("RxInstanceUtils")
|
|
14
|
+
local Observable = require("Observable")
|
|
15
15
|
|
|
16
16
|
local GameScalingUtils = {}
|
|
17
17
|
|
|
@@ -149,4 +149,4 @@ function GameScalingUtils.getDialogPadding(screenAbsoluteSize: Vector2): number
|
|
|
149
149
|
end
|
|
150
150
|
end
|
|
151
151
|
|
|
152
|
-
return GameScalingUtils
|
|
152
|
+
return GameScalingUtils
|