@quenty/idleservice 13.24.0-canary.ae8d76d.0 → 13.24.1-canary.d9ea7a3.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,7 +3,15 @@
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.24.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/idleservice@13.23.3...@quenty/idleservice@13.24.0-canary.ae8d76d.0) (2025-05-10)
6
+ ## [13.24.1-canary.d9ea7a3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/idleservice@13.24.0...@quenty/idleservice@13.24.1-canary.d9ea7a3.0) (2025-05-12)
7
+
8
+ **Note:** Version bump only for package @quenty/idleservice
9
+
10
+
11
+
12
+
13
+
14
+ # [13.24.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/idleservice@13.23.3...@quenty/idleservice@13.24.0) (2025-05-10)
7
15
 
8
16
 
9
17
  ### Bug Fixes
@@ -13,7 +21,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
13
21
 
14
22
  ### Features
15
23
 
16
- * Add even more types ([ae8d76d](https://github.com/Quenty/NevermoreEngine/commit/ae8d76d996594e017ac4bfa19f3c064ebe307cd8))
24
+ * Add even more types ([b31717d](https://github.com/Quenty/NevermoreEngine/commit/b31717d8c9f7620c457f5018a2affa760a65334a))
17
25
 
18
26
 
19
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/idleservice",
3
- "version": "13.24.0-canary.ae8d76d.0",
3
+ "version": "13.24.1-canary.d9ea7a3.0",
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",
@@ -27,19 +27,19 @@
27
27
  "Quenty"
28
28
  ],
29
29
  "dependencies": {
30
- "@quenty/baseobject": "10.8.3",
31
- "@quenty/humanoidtracker": "13.18.0-canary.ae8d76d.0",
32
- "@quenty/loader": "10.8.3",
33
- "@quenty/maid": "3.4.3",
34
- "@quenty/ragdoll": "15.24.0-canary.ae8d76d.0",
35
- "@quenty/rx": "13.18.0-canary.ae8d76d.0",
36
- "@quenty/servicebag": "11.12.0-canary.ae8d76d.0",
37
- "@quenty/statestack": "14.19.0-canary.ae8d76d.0",
38
- "@quenty/valuebaseutils": "13.18.0-canary.ae8d76d.0",
39
- "@quenty/valueobject": "13.18.0-canary.ae8d76d.0"
30
+ "@quenty/baseobject": "10.9.0",
31
+ "@quenty/humanoidtracker": "13.18.0",
32
+ "@quenty/loader": "10.9.0",
33
+ "@quenty/maid": "3.5.0",
34
+ "@quenty/ragdoll": "15.24.1-canary.d9ea7a3.0",
35
+ "@quenty/rx": "13.18.0",
36
+ "@quenty/servicebag": "11.12.1-canary.d9ea7a3.0",
37
+ "@quenty/statestack": "14.19.0",
38
+ "@quenty/valuebaseutils": "13.18.0",
39
+ "@quenty/valueobject": "13.18.0"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
44
+ "gitHead": "d9ea7a314a7d50712e6abac75d29901c1edea556"
45
45
  }
@@ -85,22 +85,22 @@ function IdleServiceClient:ObserveHumanoidMoveFromCurrentPosition(minimumTimeVis
85
85
  assert(type(minimumTimeVisible) == "number", "Bad minimumTimeVisible")
86
86
 
87
87
  return Rx.of(true):Pipe({
88
- Rx.delay(minimumTimeVisible);
88
+ Rx.delay(minimumTimeVisible),
89
89
  Rx.flatMap(function()
90
90
  return self._lastPosition:Observe()
91
- end);
91
+ end),
92
92
  Rx.where(function(value)
93
93
  return value ~= nil
94
- end);
95
- Rx.first();
94
+ end),
95
+ Rx.first(),
96
96
  Rx.flatMap(function(initialPosition)
97
97
  return self._lastPosition:Observe():Pipe({
98
98
  Rx.where(function(position)
99
99
  return position == nil or (initialPosition - position).magnitude >= MOVE_DISTANCE_REQUIRED
100
- end)
100
+ end),
101
101
  })
102
- end);
103
- Rx.first();
102
+ end),
103
+ Rx.first(),
104
104
  })
105
105
  end
106
106
 
@@ -229,4 +229,4 @@ function IdleServiceClient:Destroy()
229
229
  self._maid:DoCleaning()
230
230
  end
231
231
 
232
- return IdleServiceClient
232
+ return IdleServiceClient
@@ -73,4 +73,4 @@ function IdleTargetCalculator.SetTarget(self: IdleTargetCalculator, targetPositi
73
73
  self._lastTargetPosition = targetPosition
74
74
  end
75
75
 
76
- return IdleTargetCalculator
76
+ return IdleTargetCalculator
@@ -17,4 +17,4 @@ function IdleService:Init(serviceBag: ServiceBag.ServiceBag)
17
17
  self._serviceBag:GetService(require("HumanoidTrackerService"))
18
18
  end
19
19
 
20
- return IdleService
20
+ return IdleService