@quenty/idleservice 13.33.2 → 13.33.3-canary.607f741.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,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.33.3-canary.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/idleservice@13.33.2...@quenty/idleservice@13.33.3-canary.607f741.0) (2025-12-28)
7
+
8
+ **Note:** Version bump only for package @quenty/idleservice
9
+
10
+
11
+
12
+
13
+
6
14
  ## [13.33.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/idleservice@13.33.1...@quenty/idleservice@13.33.2) (2025-12-13)
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.33.2",
3
+ "version": "13.33.3-canary.607f741.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.9.0",
31
- "@quenty/humanoidtracker": "^13.21.2",
32
- "@quenty/loader": "^10.9.0",
33
- "@quenty/maid": "^3.5.0",
34
- "@quenty/ragdoll": "^15.33.2",
35
- "@quenty/rx": "^13.20.0",
36
- "@quenty/servicebag": "^11.13.1",
37
- "@quenty/statestack": "^14.22.2",
38
- "@quenty/valuebaseutils": "^13.20.2",
39
- "@quenty/valueobject": "^13.21.2"
30
+ "@quenty/baseobject": "10.9.0",
31
+ "@quenty/humanoidtracker": "13.21.3-canary.607f741.0",
32
+ "@quenty/loader": "10.9.0",
33
+ "@quenty/maid": "3.5.0",
34
+ "@quenty/ragdoll": "15.33.3-canary.607f741.0",
35
+ "@quenty/rx": "13.20.0",
36
+ "@quenty/servicebag": "11.13.2-canary.607f741.0",
37
+ "@quenty/statestack": "14.22.3-canary.607f741.0",
38
+ "@quenty/valuebaseutils": "13.20.3-canary.607f741.0",
39
+ "@quenty/valueobject": "13.21.3-canary.607f741.0"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "08c1d0559af2bbcece6d586897c91a630dfb3f51"
44
+ "gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
45
45
  }
@@ -19,15 +19,17 @@ local IdleTargetCalculator = setmetatable({}, BaseObject)
19
19
  IdleTargetCalculator.ClassName = "IdleTargetCalculator"
20
20
  IdleTargetCalculator.__index = IdleTargetCalculator
21
21
 
22
- export type IdleTargetCalculator = typeof(setmetatable(
23
- {} :: {
24
- _lastTargetPosition: Vector3?,
25
- _lastMoveTime: number?,
26
- _disableContextUI: ValueObject.ValueObject<boolean>,
27
- Changed: Signal.Signal<()>,
28
- },
29
- {} :: typeof({ __index = IdleTargetCalculator })
30
- )) & BaseObject.BaseObject
22
+ export type IdleTargetCalculator =
23
+ typeof(setmetatable(
24
+ {} :: {
25
+ _lastTargetPosition: Vector3?,
26
+ _lastMoveTime: number?,
27
+ _disableContextUI: ValueObject.ValueObject<boolean>,
28
+ Changed: Signal.Signal<()>,
29
+ },
30
+ {} :: typeof({ __index = IdleTargetCalculator })
31
+ ))
32
+ & BaseObject.BaseObject
31
33
 
32
34
  function IdleTargetCalculator.new(): IdleTargetCalculator
33
35
  local self: IdleTargetCalculator = setmetatable(BaseObject.new() :: any, IdleTargetCalculator)