@quenty/parttouchingcalculator 14.21.0-canary.ae8d76d.0 → 14.21.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,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.21.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/parttouchingcalculator@14.20.3...@quenty/parttouchingcalculator@14.21.0-canary.ae8d76d.0) (2025-05-10)
6
+ # [14.21.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/parttouchingcalculator@14.20.3...@quenty/parttouchingcalculator@14.21.0) (2025-05-10)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/parttouchingcalculator
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/parttouchingcalculator",
3
- "version": "14.21.0-canary.ae8d76d.0",
3
+ "version": "14.21.0",
4
4
  "description": "Determines if parts are touching or not",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,14 +25,14 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/binder": "14.20.0-canary.ae8d76d.0",
29
- "@quenty/boundingboxutils": "4.4.0-canary.ae8d76d.0",
30
- "@quenty/characterutils": "12.19.0-canary.ae8d76d.0",
31
- "@quenty/loader": "10.8.3",
32
- "@quenty/qgui": "2.3.4"
28
+ "@quenty/binder": "^14.20.0",
29
+ "@quenty/boundingboxutils": "^4.4.0",
30
+ "@quenty/characterutils": "^12.19.0",
31
+ "@quenty/loader": "^10.9.0",
32
+ "@quenty/qgui": "^2.4.0"
33
33
  },
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
37
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
38
38
  }
@@ -5,8 +5,8 @@
5
5
 
6
6
  local require = require(script.Parent.loader).load(script)
7
7
 
8
- local PartTouchingCalculator = require("PartTouchingCalculator")
9
8
  local BinderUtils = require("BinderUtils")
9
+ local PartTouchingCalculator = require("PartTouchingCalculator")
10
10
 
11
11
  local BinderTouchingCalculator = setmetatable({}, PartTouchingCalculator)
12
12
  BinderTouchingCalculator.ClassName = "BinderTouchingCalculator"
@@ -49,4 +49,4 @@ function BinderTouchingCalculator:GetTouchingClass(binder, touchingList, ignoreO
49
49
  return list
50
50
  end
51
51
 
52
- return BinderTouchingCalculator
52
+ return BinderTouchingCalculator
@@ -191,4 +191,4 @@ function PartTouchingCalculator:GetTouchingHumanoids(touchingList)
191
191
  return list
192
192
  end
193
193
 
194
- return PartTouchingCalculator
194
+ return PartTouchingCalculator
@@ -29,10 +29,9 @@ function PartTouchingRenderer:RenderTouchingProps(touchingPartList)
29
29
  selectionBox.Adornee = part
30
30
  selectionBox.Parent = part
31
31
 
32
- qGUI.TweenTransparency(selectionBox, {Transparency = 1}, 0.5)
32
+ qGUI.TweenTransparency(selectionBox, { Transparency = 1 }, 0.5)
33
33
  Debris:AddItem(selectionBox, 0.6)
34
34
  end
35
35
  end
36
36
 
37
-
38
- return PartTouchingRenderer
37
+ return PartTouchingRenderer