@quenty/particleengine 5.2.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/particleengine@5.2.0...@quenty/particleengine@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.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/particleengine@5.1.0...@quenty/particleengine@5.2.0) (2022-07-31)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/particleengine
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/particleengine",
3
- "version": "5.2.0",
3
+ "version": "6.0.0",
4
4
  "description": "Adds GUI based particle engine to Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -33,5 +33,5 @@
33
33
  "publishConfig": {
34
34
  "access": "public"
35
35
  },
36
- "gitHead": "e31b3a35aa475bb5699a24898a8639e107165b36"
36
+ "gitHead": "dbb62609f980983cc32da90acfef13e30ed41113"
37
37
  }
@@ -15,6 +15,7 @@ local PromiseGetRemoteEvent = require("PromiseGetRemoteEvent")
15
15
  local ParticleEngineConstants = require("ParticleEngineConstants")
16
16
 
17
17
  local ParticleEngineClient = {}
18
+ ParticleEngineClient.ServiceName = "ParticleEngineClient"
18
19
 
19
20
  -- 3000 if you have a good computer
20
21
  ParticleEngineClient._maxParticles = 400
@@ -13,6 +13,7 @@ local GetRemoteEvent = require("GetRemoteEvent")
13
13
  local ParticleEngineConstants = require("ParticleEngineConstants")
14
14
 
15
15
  local ParticleEngineServer = {}
16
+ ParticleEngineServer.ServiceName = "ParticleEngineServer"
16
17
 
17
18
  function ParticleEngineServer:Init()
18
19
  assert(not self._remoteEvent, "Already initialized")