@quenty/hintscoringutils 14.7.2-canary.497.496fc5b.0 → 14.7.2

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,7 +3,7 @@
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
- ## [14.7.2-canary.497.496fc5b.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/hintscoringutils@14.7.1...@quenty/hintscoringutils@14.7.2-canary.497.496fc5b.0) (2024-09-20)
6
+ ## [14.7.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/hintscoringutils@14.7.1...@quenty/hintscoringutils@14.7.2) (2024-09-22)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/hintscoringutils
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/hintscoringutils",
3
- "version": "14.7.2-canary.497.496fc5b.0",
3
+ "version": "14.7.2",
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": "3.2.0",
30
- "@quenty/boundingboxutils": "4.2.0",
31
- "@quenty/camera": "14.7.2-canary.497.496fc5b.0",
32
- "@quenty/draw": "7.4.1-canary.497.496fc5b.0",
33
- "@quenty/loader": "10.4.1-canary.497.496fc5b.0",
34
- "@quenty/maid": "3.3.0",
35
- "@quenty/math": "2.7.0",
36
- "@quenty/region3utils": "10.4.1-canary.497.496fc5b.0",
37
- "@quenty/vector3utils": "10.4.1-canary.497.496fc5b.0"
29
+ "@quenty/adorneeutils": "^3.2.0",
30
+ "@quenty/boundingboxutils": "^4.2.0",
31
+ "@quenty/camera": "^14.7.2",
32
+ "@quenty/draw": "^7.4.0",
33
+ "@quenty/loader": "^10.4.0",
34
+ "@quenty/maid": "^3.3.0",
35
+ "@quenty/math": "^2.7.0",
36
+ "@quenty/region3utils": "^10.4.0",
37
+ "@quenty/vector3utils": "^10.4.0"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "496fc5bb230a226ec6c86a8dfd025b8e326d92d8"
42
+ "gitHead": "1cd1ee70499c9c4a52465d2e5125732b8a10cb27"
43
43
  }
@@ -83,7 +83,7 @@ if DEBUG_ENABLED then
83
83
  function HintScoringUtils.debugScore(adornee, score)
84
84
  assert(adornee, "Bad adornee")
85
85
 
86
- debugMaid:GiveTask(Draw.text(AdorneeUtils.getCenter(adornee), string.format("%0.6f", score)))
86
+ debugMaid:GiveTask(Draw.text(AdorneeUtils.getCenter(adornee), ("%0.6f"):format(score)))
87
87
  end
88
88
  else
89
89
  function HintScoringUtils.debugScore(_, _)