@quenty/adorneeutils 3.2.0 → 3.3.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,17 @@
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
+ # [3.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/adorneeutils@3.2.0...@quenty/adorneeutils@3.3.0) (2024-12-03)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Use modern Roblox APIs ([b4b9047](https://github.com/Quenty/NevermoreEngine/commit/b4b90471fbb678c6fb84664dbfc32cb9bfc56c2c))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/adorneeutils@3.1.0...@quenty/adorneeutils@3.2.0) (2024-05-09)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/adorneeutils",
3
- "version": "3.2.0",
3
+ "version": "3.3.0",
4
4
  "description": "AdorneeUtils - Generic adornee functions to make attaching to objects in Roblox easier.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,5 +27,5 @@
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
- "gitHead": "3fd5cdca3128bf34c8d9dfae1e92d62533b6e6f5"
30
+ "gitHead": "66190e48c1ca93b07040326e9cfcf97e8eb4b0e1"
31
31
  }
@@ -19,7 +19,7 @@ function AdorneeUtils.getCenter(adornee)
19
19
  if adornee:IsA("BasePart") then
20
20
  return adornee.Position
21
21
  elseif adornee:IsA("Model") then
22
- return adornee:GetBoundingBox().p
22
+ return adornee:GetBoundingBox().Position
23
23
  elseif adornee:IsA("Attachment") then
24
24
  return adornee.WorldPosition
25
25
  elseif adornee:IsA("Humanoid") then