@quenty/clipcharacters 12.19.4-canary.559.9f38947.0 → 12.20.0-canary.559.b31717d.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,7 +3,7 @@
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.4-canary.559.9f38947.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clipcharacters@12.19.3...@quenty/clipcharacters@12.19.4-canary.559.9f38947.0) (2025-05-10)
6
+ # [12.20.0-canary.559.b31717d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clipcharacters@12.19.3...@quenty/clipcharacters@12.20.0-canary.559.b31717d.0) (2025-05-10)
7
7
 
8
8
 
9
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/clipcharacters",
3
- "version": "12.19.4-canary.559.9f38947.0",
3
+ "version": "12.20.0-canary.559.b31717d.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.4-canary.559.9f38947.0",
29
- "@quenty/brio": "14.17.4-canary.559.9f38947.0",
30
- "@quenty/characterutils": "12.18.4-canary.559.9f38947.0",
31
- "@quenty/loader": "10.8.4-canary.559.9f38947.0",
32
- "@quenty/maid": "3.4.4-canary.559.9f38947.0",
33
- "@quenty/playerutils": "8.17.4-canary.559.9f38947.0",
34
- "@quenty/remoting": "12.18.4-canary.559.9f38947.0",
35
- "@quenty/servicebag": "11.11.5-canary.559.9f38947.0",
36
- "@quenty/statestack": "14.18.4-canary.559.9f38947.0",
37
- "@quenty/table": "3.7.5-canary.559.9f38947.0",
38
- "@quenty/valueobject": "13.17.4-canary.559.9f38947.0"
28
+ "@quenty/baseobject": "10.8.3",
29
+ "@quenty/brio": "14.18.0-canary.559.b31717d.0",
30
+ "@quenty/characterutils": "12.19.0-canary.559.b31717d.0",
31
+ "@quenty/loader": "10.8.3",
32
+ "@quenty/maid": "3.4.3",
33
+ "@quenty/playerutils": "8.18.0-canary.559.b31717d.0",
34
+ "@quenty/remoting": "12.19.0-canary.559.b31717d.0",
35
+ "@quenty/servicebag": "11.12.0-canary.559.b31717d.0",
36
+ "@quenty/statestack": "14.19.0-canary.559.b31717d.0",
37
+ "@quenty/table": "3.7.4",
38
+ "@quenty/valueobject": "13.18.0-canary.559.b31717d.0"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "9f38947767d202411936a5c98898033df5865da0"
43
+ "gitHead": "b31717d8c9f7620c457f5018a2affa760a65334a"
44
44
  }
@@ -83,4 +83,4 @@ function ClipCharacters._setupCharacter(self: ClipCharacters, maid: Maid.Maid, c
83
83
  end
84
84
  end
85
85
 
86
- return ClipCharacters
86
+ return ClipCharacters
@@ -6,8 +6,8 @@ local require = require(script.Parent.loader).load(script)
6
6
 
7
7
  local ClipCharacters = require("ClipCharacters")
8
8
  local Maid = require("Maid")
9
- local ServiceBag = require("ServiceBag")
10
9
  local StateStack = require("StateStack")
10
+ local ServiceBag = require("ServiceBag")
11
11
 
12
12
  local ClipCharactersServiceClient = {}
13
13
  ClipCharactersServiceClient.ServiceName = "ClipCharactersServiceClient"
@@ -29,22 +29,20 @@ function ClipCharactersServiceClient:PushDisableCharacterCollisionsWithDefault()
29
29
  end
30
30
 
31
31
  function ClipCharactersServiceClient:Start()
32
- self._maid:GiveTask(self._disableCollisions
33
- :ObserveBrio(function(value)
34
- return value
35
- end)
36
- :Subscribe(function(brio)
37
- if brio:IsDead() then
38
- return
39
- end
40
-
41
- local maid = brio:ToMaid()
42
- maid:GiveTask(ClipCharacters.new())
43
- end))
32
+ self._maid:GiveTask(self._disableCollisions:ObserveBrio(function(value)
33
+ return value
34
+ end):Subscribe(function(brio)
35
+ if brio:IsDead() then
36
+ return
37
+ end
38
+
39
+ local maid = brio:ToMaid()
40
+ maid:GiveTask(ClipCharacters.new())
41
+ end))
44
42
  end
45
43
 
46
44
  function ClipCharactersServiceClient:Destroy()
47
45
  self._maid:DoCleaning()
48
46
  end
49
47
 
50
- return ClipCharactersServiceClient
48
+ return ClipCharactersServiceClient
@@ -6,8 +6,8 @@ local require = require(script.Parent.loader).load(script)
6
6
 
7
7
  local PhysicsService = game:GetService("PhysicsService")
8
8
 
9
- local ClipCharactersServiceConstants = require("ClipCharactersServiceConstants")
10
9
  local Maid = require("Maid")
10
+ local ClipCharactersServiceConstants = require("ClipCharactersServiceConstants")
11
11
  local ServiceBag = require("ServiceBag")
12
12
 
13
13
  local ClipCharactersService = {}
@@ -30,4 +30,4 @@ function ClipCharactersService:Destroy()
30
30
  self._maid:DoCleaning()
31
31
  end
32
32
 
33
- return ClipCharactersService
33
+ return ClipCharactersService
@@ -7,5 +7,5 @@ local require = require(script.Parent.loader).load(script)
7
7
  local Table = require("Table")
8
8
 
9
9
  return Table.readonly({
10
- COLLISION_GROUP_NAME = "ClipCharacters",
11
- })
10
+ COLLISION_GROUP_NAME = "ClipCharacters"
11
+ })
@@ -9,4 +9,4 @@ local require = require(loader).bootstrapGame(ServerScriptService.clipcharacters
9
9
  local serviceBag = require("ServiceBag").new()
10
10
  serviceBag:GetService(require("ClipCharactersService"))
11
11
  serviceBag:Init()
12
- serviceBag:Start()
12
+ serviceBag:Start()