@quenty/hide 11.18.0 → 11.19.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
+ # [11.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/hide@11.18.0...@quenty/hide@11.19.0) (2025-01-19)
7
+
8
+
9
+ ### Features
10
+
11
+ * Support gui objects ([91a6fab](https://github.com/Quenty/NevermoreEngine/commit/91a6fabd2b436ce60af1c4ad2d8ca6acd8a36d78))
12
+
13
+
14
+
15
+
16
+
6
17
  # [11.18.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/hide@11.17.0...@quenty/hide@11.18.0) (2024-12-15)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/hide
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/hide",
3
- "version": "11.18.0",
3
+ "version": "11.19.0",
4
4
  "description": "Utility system that leverages the binder system to hide authored objects. Centralized here for cross-system communication.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -33,5 +33,5 @@
33
33
  "publishConfig": {
34
34
  "access": "public"
35
35
  },
36
- "gitHead": "0a20ace4dc7d38f8c889bf73b716b33e8a767c54"
36
+ "gitHead": "a55ec046e30ddacc356f3d93fcbc6058888a88f6"
37
37
  }
@@ -34,6 +34,8 @@ function Hide.new(adornee)
34
34
  self:_setupPart(item)
35
35
  end
36
36
  end
37
+ elseif self._obj:IsA("GuiObject") then
38
+ self._obj.BackgroundTransparency = 1
37
39
  else
38
40
  error("[Hide] - Bad object type for hide")
39
41
  end