@quenty/clipcharacters 12.19.0 → 12.19.1-canary.545.2374fb2.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
+ ## [12.19.1-canary.545.2374fb2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clipcharacters@12.19.0...@quenty/clipcharacters@12.19.1-canary.545.2374fb2.0) (2025-04-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Add types to packages ([2374fb2](https://github.com/Quenty/NevermoreEngine/commit/2374fb2b043cfbe0e9b507b3316eec46a4e353a0))
12
+
13
+
14
+
15
+
16
+
6
17
  # [12.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clipcharacters@12.18.2...@quenty/clipcharacters@12.19.0) (2025-04-02)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/clipcharacters
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/clipcharacters",
3
- "version": "12.19.0",
3
+ "version": "12.19.1-canary.545.2374fb2.0",
4
4
  "description": "Clip characters locally on the client of other clients so they don't interfer with physics.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,20 +25,20 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/baseobject": "^10.8.0",
29
- "@quenty/brio": "^14.17.0",
30
- "@quenty/characterutils": "^12.18.0",
31
- "@quenty/loader": "^10.8.0",
32
- "@quenty/maid": "^3.4.0",
33
- "@quenty/playerutils": "^8.17.0",
34
- "@quenty/remoting": "^12.18.0",
35
- "@quenty/servicebag": "^11.11.1",
36
- "@quenty/statestack": "^14.18.0",
37
- "@quenty/table": "^3.7.1",
38
- "@quenty/valueobject": "^13.17.0"
28
+ "@quenty/baseobject": "10.8.1-canary.545.2374fb2.0",
29
+ "@quenty/brio": "14.17.1-canary.545.2374fb2.0",
30
+ "@quenty/characterutils": "12.18.1-canary.545.2374fb2.0",
31
+ "@quenty/loader": "10.8.1-canary.545.2374fb2.0",
32
+ "@quenty/maid": "3.4.1-canary.545.2374fb2.0",
33
+ "@quenty/playerutils": "8.17.1-canary.545.2374fb2.0",
34
+ "@quenty/remoting": "12.18.1-canary.545.2374fb2.0",
35
+ "@quenty/servicebag": "11.11.2-canary.545.2374fb2.0",
36
+ "@quenty/statestack": "14.18.1-canary.545.2374fb2.0",
37
+ "@quenty/table": "3.7.2-canary.545.2374fb2.0",
38
+ "@quenty/valueobject": "13.17.1-canary.545.2374fb2.0"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "e8ea56930e65322fcffc05a1556d5df988068f0b"
43
+ "gitHead": "2374fb2b043cfbe0e9b507b3316eec46a4e353a0"
44
44
  }
@@ -66,13 +66,13 @@ function ClipCharacters:_setupCharacter(maid, character)
66
66
 
67
67
  -- Cleanup
68
68
  maid:GiveTask(function()
69
- for descendant, _ in pairs(originalTable) do
69
+ for descendant, _ in originalTable do
70
70
  self:_onDescendantRemoving(originalTable, descendant)
71
71
  end
72
72
  end)
73
73
 
74
74
  -- Initialize
75
- for _, descendant in pairs(character:GetDescendants()) do
75
+ for _, descendant in character:GetDescendants() do
76
76
  self:_onDescendantAdded(originalTable, descendant)
77
77
  end
78
78
  end
@@ -7,11 +7,12 @@ local require = require(script.Parent.loader).load(script)
7
7
  local ClipCharacters = require("ClipCharacters")
8
8
  local Maid = require("Maid")
9
9
  local StateStack = require("StateStack")
10
+ local _ServiceBag = require("ServiceBag")
10
11
 
11
12
  local ClipCharactersServiceClient = {}
12
13
  ClipCharactersServiceClient.ServiceName = "ClipCharactersServiceClient"
13
14
 
14
- function ClipCharactersServiceClient:Init(serviceBag)
15
+ function ClipCharactersServiceClient:Init(serviceBag: _ServiceBag.ServiceBag)
15
16
  assert(not self._serviceBag, "Already initialized")
16
17
  self._serviceBag = assert(serviceBag, "No serviceBag")
17
18
  self._maid = Maid.new()
@@ -8,11 +8,12 @@ local PhysicsService = game:GetService("PhysicsService")
8
8
 
9
9
  local Maid = require("Maid")
10
10
  local ClipCharactersServiceConstants = require("ClipCharactersServiceConstants")
11
+ local _ServiceBag = require("ServiceBag")
11
12
 
12
13
  local ClipCharactersService = {}
13
14
  ClipCharactersService.ServiceName = "ClipCharactersService"
14
15
 
15
- function ClipCharactersService:Init(serviceBag)
16
+ function ClipCharactersService:Init(serviceBag: _ServiceBag.ServiceBag)
16
17
  assert(not self._serviceBag, "Already initialized")
17
18
  self._serviceBag = assert(serviceBag, "No serviceBag")
18
19
  self._maid = Maid.new()