@quenty/firstpersoncharactertransparency 5.3.0 → 6.0.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
+ # [6.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/firstpersoncharactertransparency@5.3.0...@quenty/firstpersoncharactertransparency@6.0.0) (2022-08-14)
7
+
8
+
9
+ ### Features
10
+
11
+ * Add ServiceName to most services for faster debugging ([39fc3f4](https://github.com/Quenty/NevermoreEngine/commit/39fc3f4f2beb92fff49b2264424e07af7907324e))
12
+
13
+
14
+
15
+
16
+
6
17
  # [5.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/firstpersoncharactertransparency@5.2.0...@quenty/firstpersoncharactertransparency@5.3.0) (2022-07-31)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/firstpersoncharactertransparency
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/firstpersoncharactertransparency",
3
- "version": "5.3.0",
3
+ "version": "6.0.0",
4
4
  "description": "Allows transparency to manually be controlled for a character in first-person mode",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,13 +27,13 @@
27
27
  ],
28
28
  "dependencies": {
29
29
  "@quenty/baseobject": "^5.1.0",
30
- "@quenty/humanoidtracker": "^5.2.0",
30
+ "@quenty/humanoidtracker": "^6.0.0",
31
31
  "@quenty/loader": "^5.0.0",
32
32
  "@quenty/maid": "^2.4.0",
33
- "@quenty/transparencyservice": "^5.1.0"
33
+ "@quenty/transparencyservice": "^6.0.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "e31b3a35aa475bb5699a24898a8639e107165b36"
38
+ "gitHead": "dbb62609f980983cc32da90acfef13e30ed41113"
39
39
  }
@@ -8,6 +8,7 @@ local Maid = require("Maid")
8
8
  local FirstPersonCharacterTransparency = require("FirstPersonCharacterTransparency")
9
9
 
10
10
  local FirstPersonCharacterTransparencyServiceClient = {}
11
+ FirstPersonCharacterTransparencyServiceClient.ServiceName = "FirstPersonCharacterTransparencyServiceClient"
11
12
 
12
13
  function FirstPersonCharacterTransparencyServiceClient:Init(serviceBag)
13
14
  assert(not self._serviceBag, "Already initialized")