@quenty/adorneeutils 3.0.0 → 3.1.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.1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/adorneeutils@3.0.0...@quenty/adorneeutils@3.1.0) (2023-05-26)
7
+
8
+
9
+ ### Features
10
+
11
+ * Initial refactor of guis to use ValueObject instead of ValueObject ([723aba0](https://github.com/Quenty/NevermoreEngine/commit/723aba0208cae7e06c9d8bf2d8f0092d042d70ea))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/adorneeutils@2.3.0...@quenty/adorneeutils@3.0.0) (2022-05-21)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/adorneeutils
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2014-2022 Quenty
3
+ Copyright (c) 2014-2023 James Onnen (Quenty)
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/adorneeutils",
3
- "version": "3.0.0",
3
+ "version": "3.1.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": "9f7eaea7543c33c89d2e32c38491b13f9271f4f7"
30
+ "gitHead": "11058e90e51ea83d3dad6ae9abe59cc19c36b94b"
31
31
  }
@@ -58,7 +58,7 @@ function AdorneeUtils.getBoundingBox(adornee)
58
58
  if adornee:IsA("Model") then
59
59
  return adornee:GetBoundingBox()
60
60
  elseif adornee:IsA("Attachment") then
61
- return adornee.WorldCFrame, Vector3.new(0, 0, 0) -- This is a point
61
+ return adornee.WorldCFrame, Vector3.zero -- This is a point
62
62
  else
63
63
  return AdorneeUtils.getPartCFrame(adornee), AdorneeUtils.getAlignedSize(adornee)
64
64
  end