@quenty/humanoidmovedirectionutils 10.8.4 → 10.8.5-canary.11a5dcf.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
+ ## [10.8.5-canary.11a5dcf.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidmovedirectionutils@10.8.4...@quenty/humanoidmovedirectionutils@10.8.5-canary.11a5dcf.0) (2025-05-10)
7
+
8
+ **Note:** Version bump only for package @quenty/humanoidmovedirectionutils
9
+
10
+
11
+
12
+
13
+
6
14
  ## [10.8.4](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidmovedirectionutils@10.8.3...@quenty/humanoidmovedirectionutils@10.8.4) (2025-04-10)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/humanoidmovedirectionutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/humanoidmovedirectionutils",
3
- "version": "10.8.4",
3
+ "version": "10.8.5-canary.11a5dcf.0",
4
4
  "description": "Gets the relative move direction from the camera and the humanoid allowing Roblox's input system to be layered on top of a camera system.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,11 +25,11 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/cframeutils": "^5.5.3",
29
- "@quenty/loader": "^10.8.3"
28
+ "@quenty/cframeutils": "5.5.3",
29
+ "@quenty/loader": "10.8.4-canary.11a5dcf.0"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "b06c070ae91d5dab7bd8de6e290ad2caabb15d8f"
34
+ "gitHead": "11a5dcf7d4c7a0bfbf3337e97d30e8346ea09d3f"
35
35
  }
@@ -16,8 +16,8 @@ local getRotationInXZPlane = require("getRotationInXZPlane")
16
16
  local ZERO_VECTOR = Vector3.zero
17
17
  local RIGHT = Vector3.new(1, 0, 0)
18
18
  local DIRECTION_INPUT_MAPS = {
19
- [Enum.KeyCode.Left] = -RIGHT;
20
- [Enum.KeyCode.Right] = RIGHT;
19
+ [Enum.KeyCode.Left] = -RIGHT,
20
+ [Enum.KeyCode.Right] = RIGHT,
21
21
  }
22
22
 
23
23
  local HumanoidMoveDirectionUtils = {}
@@ -55,4 +55,4 @@ function HumanoidMoveDirectionUtils.getRelativeMoveDirection(cameraCFrame, human
55
55
  return relative
56
56
  end
57
57
 
58
- return HumanoidMoveDirectionUtils
58
+ return HumanoidMoveDirectionUtils