@quenty/inputobjectutils 4.21.0 → 4.21.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
+ ## [4.21.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputobjectutils@4.21.0...@quenty/inputobjectutils@4.21.1) (2025-12-28)
7
+
8
+ **Note:** Version bump only for package @quenty/inputobjectutils
9
+
10
+
11
+
12
+
13
+
6
14
  # [4.21.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputobjectutils@4.20.0...@quenty/inputobjectutils@4.21.0) (2025-09-26)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/inputobjectutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/inputobjectutils",
3
- "version": "4.21.0",
3
+ "version": "4.21.1",
4
4
  "description": "Provides utility functions involving input objects",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -34,5 +34,5 @@
34
34
  "@quenty/rx": "^13.20.0",
35
35
  "@quenty/rxsignal": "^7.20.0"
36
36
  },
37
- "gitHead": "0ecdc6807f4ad638ffd49b056bceec4353895b82"
37
+ "gitHead": "821c9336020dfbcf5cd2f67f2dfe61624233ee06"
38
38
  }
@@ -45,18 +45,20 @@ local InputObjectTracker = setmetatable({}, BaseObject)
45
45
  InputObjectTracker.ClassName = "InputObjectTracker"
46
46
  InputObjectTracker.__index = InputObjectTracker
47
47
 
48
- export type InputObjectTracker = typeof(setmetatable(
49
- {} :: {
50
- _initialPosition: Vector2,
51
- _initialInputObject: InputObject,
52
- _lastMousePosition: Vector2,
53
- _isMouse: boolean,
54
- _camera: Camera?,
55
-
56
- InputEnded: RxSignal.RxSignal<()>,
57
- },
58
- {} :: typeof({ __index = InputObjectTracker })
59
- )) & BaseObject.BaseObject
48
+ export type InputObjectTracker =
49
+ typeof(setmetatable(
50
+ {} :: {
51
+ _initialPosition: Vector2,
52
+ _initialInputObject: InputObject,
53
+ _lastMousePosition: Vector2,
54
+ _isMouse: boolean,
55
+ _camera: Camera?,
56
+
57
+ InputEnded: RxSignal.RxSignal<()>,
58
+ },
59
+ {} :: typeof({ __index = InputObjectTracker })
60
+ ))
61
+ & BaseObject.BaseObject
60
62
 
61
63
  local function toVector2(vector3: Vector3): Vector2
62
64
  return Vector2.new(vector3.X, vector3.Y)