@quenty/idleservice 13.49.0 → 13.50.1
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,6 +3,14 @@
|
|
|
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
|
+
## [13.50.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/idleservice@13.50.0...@quenty/idleservice@13.50.1) (2026-05-30)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/idleservice
|
|
9
|
+
|
|
10
|
+
# [13.50.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/idleservice@13.49.0...@quenty/idleservice@13.50.0) (2026-05-29)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @quenty/idleservice
|
|
13
|
+
|
|
6
14
|
# [13.49.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/idleservice@13.48.0...@quenty/idleservice@13.49.0) (2026-05-20)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/idleservice
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/idleservice",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.50.1",
|
|
4
4
|
"description": "Helps track whether or not a player is idle and if so, then can show UI or other cute things.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -31,19 +31,19 @@
|
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@quenty/baseobject": "10.13.0",
|
|
34
|
-
"@quenty/humanoidtracker": "13.
|
|
34
|
+
"@quenty/humanoidtracker": "13.31.1",
|
|
35
35
|
"@quenty/loader": "10.11.0",
|
|
36
36
|
"@quenty/maid": "3.9.0",
|
|
37
|
-
"@quenty/ragdoll": "15.
|
|
38
|
-
"@quenty/rx": "13.28.
|
|
39
|
-
"@quenty/servicebag": "11.18.
|
|
40
|
-
"@quenty/signal": "7.13.
|
|
41
|
-
"@quenty/statestack": "14.
|
|
42
|
-
"@quenty/valuebaseutils": "13.
|
|
43
|
-
"@quenty/valueobject": "13.
|
|
37
|
+
"@quenty/ragdoll": "15.50.1",
|
|
38
|
+
"@quenty/rx": "13.28.3",
|
|
39
|
+
"@quenty/servicebag": "11.18.1",
|
|
40
|
+
"@quenty/signal": "7.13.1",
|
|
41
|
+
"@quenty/statestack": "14.32.1",
|
|
42
|
+
"@quenty/valuebaseutils": "13.30.1",
|
|
43
|
+
"@quenty/valueobject": "13.31.1"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
|
|
49
49
|
}
|
|
@@ -122,7 +122,7 @@ function IdleServiceClient:IsMoving(): boolean
|
|
|
122
122
|
end
|
|
123
123
|
|
|
124
124
|
--[=[
|
|
125
|
-
|
|
125
|
+
Observes if the humanoid is idle.
|
|
126
126
|
@return Observable<boolean>
|
|
127
127
|
]=]
|
|
128
128
|
function IdleServiceClient:ObserveHumanoidIdle()
|
|
@@ -138,7 +138,7 @@ function IdleServiceClient:DoShowIdleUI()
|
|
|
138
138
|
end
|
|
139
139
|
|
|
140
140
|
--[=[
|
|
141
|
-
Observes whether to show the
|
|
141
|
+
Observes whether to show the idle UI
|
|
142
142
|
@return Observable<boolean>
|
|
143
143
|
]=]
|
|
144
144
|
function IdleServiceClient:ObserveShowIdleUI()
|