@quenty/humanoidmovedirectionutils 5.0.0 → 5.0.1-canary.283.715287b.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
|
+
## [5.0.1-canary.283.715287b.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidmovedirectionutils@5.0.0...@quenty/humanoidmovedirectionutils@5.0.1-canary.283.715287b.0) (2022-08-16)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/humanoidmovedirectionutils
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [5.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidmovedirectionutils@4.1.0...@quenty/humanoidmovedirectionutils@5.0.0) (2022-05-21)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/humanoidmovedirectionutils
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/humanoidmovedirectionutils",
|
|
3
|
-
"version": "5.0.0",
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "5.0.1-canary.283.715287b.0",
|
|
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",
|
|
7
7
|
"Nevermore",
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/cframeutils": "
|
|
29
|
-
"@quenty/loader": "
|
|
28
|
+
"@quenty/cframeutils": "4.0.0",
|
|
29
|
+
"@quenty/loader": "5.0.0"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "715287bf41b9be7160e69ec479cdc6c7d3ec5830"
|
|
35
35
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
--[=[
|
|
2
|
+
Gets the relative move direction from the camera and the humanoid allowing Roblox's input system to
|
|
3
|
+
be layered on top of a camera system.
|
|
4
|
+
|
|
2
5
|
Ever wanted to not rewrite all of Roblox's input systems! Well, now you can with this slight hack!
|
|
3
6
|
|
|
4
7
|
@class HumanoidMoveDirectionUtils
|