@quenty/transparencyservice 7.4.0 → 7.5.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
+ # [7.5.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/transparencyservice@7.4.0...@quenty/transparencyservice@7.5.0) (2023-06-18)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * TransparencyService works in stories ([ff28404](https://github.com/Quenty/NevermoreEngine/commit/ff28404961e6378d8ec7110a4b4575e835604879))
12
+
13
+
14
+
15
+
16
+
6
17
  # [7.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/transparencyservice@7.3.1...@quenty/transparencyservice@7.4.0) (2023-06-05)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/transparencyservice
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/transparencyservice",
3
- "version": "7.4.0",
3
+ "version": "7.5.0",
4
4
  "description": "Service that orchistrates transparency setting from multiple colliding sources and handle the transparency appropriately. This means that 2 systems can work with transparency without knowing about each other.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -31,5 +31,5 @@
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "d8ad8f8567843d3867b6c06c8c57ec4493672335"
34
+ "gitHead": "2e4b57d56175186261d4f80a334816e03d63f80e"
35
35
  }
@@ -25,6 +25,10 @@ function TransparencyService:Init()
25
25
  }
26
26
  end
27
27
 
28
+ function TransparencyService:IsDead()
29
+ return self._properties == nil
30
+ end
31
+
28
32
  --[=[
29
33
  Uninitializes the transparency service, restoring transparency to original values.
30
34
  ]=]