@quenty/screenshothudservice 7.18.4-canary.559.339cfa7.0 → 7.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
|
+
# [7.19.0-canary.0a5db80.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/screenshothudservice@7.18.2...@quenty/screenshothudservice@7.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
|
-
## [7.18.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/screenshothudservice@7.18.2...@quenty/screenshothudservice@7.18.3) (2025-04-10)
|
|
18
|
-
|
|
19
|
-
**Note:** Version bump only for package @quenty/screenshothudservice
|
|
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/screenshothudservice",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.19.0-canary.0a5db80.0",
|
|
4
4
|
"description": "Provides centralized API surface for screenshot hud API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,20 +25,20 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/baseobject": "10.
|
|
29
|
-
"@quenty/brio": "14.
|
|
30
|
-
"@quenty/instanceutils": "13.
|
|
31
|
-
"@quenty/loader": "10.
|
|
32
|
-
"@quenty/maid": "3.
|
|
33
|
-
"@quenty/promise": "10.
|
|
34
|
-
"@quenty/rx": "13.
|
|
35
|
-
"@quenty/servicebag": "11.
|
|
36
|
-
"@quenty/signal": "7.
|
|
37
|
-
"@quenty/statestack": "14.
|
|
38
|
-
"@quenty/valueobject": "13.
|
|
28
|
+
"@quenty/baseobject": "10.9.0-canary.0a5db80.0",
|
|
29
|
+
"@quenty/brio": "14.18.0-canary.0a5db80.0",
|
|
30
|
+
"@quenty/instanceutils": "13.18.0-canary.0a5db80.0",
|
|
31
|
+
"@quenty/loader": "10.9.0-canary.0a5db80.0",
|
|
32
|
+
"@quenty/maid": "3.5.0-canary.0a5db80.0",
|
|
33
|
+
"@quenty/promise": "10.11.0-canary.0a5db80.0",
|
|
34
|
+
"@quenty/rx": "13.18.0-canary.0a5db80.0",
|
|
35
|
+
"@quenty/servicebag": "11.12.0-canary.0a5db80.0",
|
|
36
|
+
"@quenty/signal": "7.11.0-canary.0a5db80.0",
|
|
37
|
+
"@quenty/statestack": "14.19.0-canary.0a5db80.0",
|
|
38
|
+
"@quenty/valueobject": "13.18.0-canary.0a5db80.0"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "0a5db8004684dc3e76fd5944599a22602d48cfa9"
|
|
44
44
|
}
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
local require = require(script.Parent.loader).load(script)
|
|
7
7
|
|
|
8
8
|
local BaseObject = require("BaseObject")
|
|
9
|
-
local Observable = require("Observable")
|
|
10
|
-
local Signal = require("Signal")
|
|
11
9
|
local ValueObject = require("ValueObject")
|
|
10
|
+
local Signal = require("Signal")
|
|
11
|
+
local Observable = require("Observable")
|
|
12
12
|
|
|
13
13
|
local ScreenshotHudModel = setmetatable({}, BaseObject)
|
|
14
14
|
ScreenshotHudModel.ClassName = "ScreenshotHudModel"
|
|
@@ -277,4 +277,4 @@ function ScreenshotHudModel.InternalFireClosedRequested(self: ScreenshotHudModel
|
|
|
277
277
|
self.CloseRequested:Fire()
|
|
278
278
|
end
|
|
279
279
|
|
|
280
|
-
return ScreenshotHudModel
|
|
280
|
+
return ScreenshotHudModel
|
|
@@ -7,11 +7,11 @@ local require = require(script.Parent.loader).load(script)
|
|
|
7
7
|
local GuiService = game:GetService("GuiService")
|
|
8
8
|
|
|
9
9
|
local Maid = require("Maid")
|
|
10
|
+
local RxInstanceUtils = require("RxInstanceUtils")
|
|
11
|
+
local StateStack = require("StateStack")
|
|
10
12
|
local Rx = require("Rx")
|
|
11
13
|
local RxBrioUtils = require("RxBrioUtils")
|
|
12
|
-
local RxInstanceUtils = require("RxInstanceUtils")
|
|
13
14
|
local ServiceBag = require("ServiceBag")
|
|
14
|
-
local StateStack = require("StateStack")
|
|
15
15
|
|
|
16
16
|
local ScreenshotHudServiceClient = {}
|
|
17
17
|
ScreenshotHudServiceClient.ServiceName = "ScreenshotHudServiceClient"
|
|
@@ -57,8 +57,8 @@ end
|
|
|
57
57
|
|
|
58
58
|
function ScreenshotHudServiceClient:_bindModelToHUD(maid: Maid.Maid, model, screenshotHUD)
|
|
59
59
|
maid:GiveTask(Rx.combineLatest({
|
|
60
|
-
visible = model:ObserveCloseButtonVisible()
|
|
61
|
-
position = model:ObserveCloseButtonPosition()
|
|
60
|
+
visible = model:ObserveCloseButtonVisible();
|
|
61
|
+
position = model:ObserveCloseButtonPosition();
|
|
62
62
|
}):Subscribe(function(state)
|
|
63
63
|
if state.visible then
|
|
64
64
|
screenshotHUD.CloseButtonPosition = state.position
|
|
@@ -70,8 +70,8 @@ function ScreenshotHudServiceClient:_bindModelToHUD(maid: Maid.Maid, model, scre
|
|
|
70
70
|
|
|
71
71
|
-- I'm not sure why you would do this, but it's here
|
|
72
72
|
maid:GiveTask(Rx.combineLatest({
|
|
73
|
-
visible = model:ObserveCameraButtonVisible()
|
|
74
|
-
position = model:ObserveCameraButtonPosition()
|
|
73
|
+
visible = model:ObserveCameraButtonVisible();
|
|
74
|
+
position = model:ObserveCameraButtonPosition();
|
|
75
75
|
}):Subscribe(function(state)
|
|
76
76
|
if state.visible then
|
|
77
77
|
screenshotHUD.CameraButtonPosition = state.position
|
|
@@ -139,4 +139,4 @@ function ScreenshotHudServiceClient:Destroy()
|
|
|
139
139
|
self._maid:DoCleaning()
|
|
140
140
|
end
|
|
141
141
|
|
|
142
|
-
return ScreenshotHudServiceClient
|
|
142
|
+
return ScreenshotHudServiceClient
|