@quenty/hintscoringutils 5.3.0 → 6.1.0-canary.252.9753dcc.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,22 @@
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
+ # [6.1.0-canary.252.9753dcc.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/hintscoringutils@6.0.0...@quenty/hintscoringutils@6.1.0-canary.252.9753dcc.0) (2022-03-10)
7
+
8
+ **Note:** Version bump only for package @quenty/hintscoringutils
9
+
10
+
11
+
12
+
13
+
14
+ # [6.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/hintscoringutils@5.3.0...@quenty/hintscoringutils@6.0.0) (2022-03-06)
15
+
16
+ **Note:** Version bump only for package @quenty/hintscoringutils
17
+
18
+
19
+
20
+
21
+
6
22
  # [5.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/hintscoringutils@5.2.1...@quenty/hintscoringutils@5.3.0) (2022-01-17)
7
23
 
8
24
  **Note:** Version bump only for package @quenty/hintscoringutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/hintscoringutils",
3
- "version": "5.3.0",
3
+ "version": "6.1.0-canary.252.9753dcc.0",
4
4
  "description": "Utility functions that let you score a proximity prompt (i.e. a Hint) based upon its relation to a character in 3D space.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,18 +26,18 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/adorneeutils": "^2.2.0",
30
- "@quenty/boundingboxutils": "^2.0.1",
31
- "@quenty/camera": "^5.3.0",
32
- "@quenty/draw": "^2.2.2",
33
- "@quenty/loader": "^3.4.0",
34
- "@quenty/maid": "^2.1.0",
35
- "@quenty/math": "^2.0.1",
36
- "@quenty/region3utils": "^3.5.0",
37
- "@quenty/vector3utils": "^3.5.0"
29
+ "@quenty/adorneeutils": "2.2.0",
30
+ "@quenty/boundingboxutils": "3.0.0",
31
+ "@quenty/camera": "6.1.0-canary.252.9753dcc.0",
32
+ "@quenty/draw": "3.0.0",
33
+ "@quenty/loader": "4.0.0",
34
+ "@quenty/maid": "2.2.0-canary.252.9753dcc.0",
35
+ "@quenty/math": "2.0.1",
36
+ "@quenty/region3utils": "4.0.0",
37
+ "@quenty/vector3utils": "4.0.0"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "c094ba8f4e128cdff08919d89de226d3d65247ce"
42
+ "gitHead": "9753dcc02d4600d2706d8003cebb325ccfcde523"
43
43
  }
@@ -47,7 +47,7 @@ function HintScoringUtils.getHumanoidPositionDirection(humanoid)
47
47
  end
48
48
 
49
49
  local rootCFrame = rootPart.CFrame
50
- return rootCFrame.p, rootCFrame.lookVector
50
+ return rootCFrame.Position, rootCFrame.lookVector
51
51
  end
52
52
 
53
53
  --[=[