@quenty/clipcharacters 12.20.0-canary.ae8d76d.0 → 12.20.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.20.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clipcharacters@12.19.3...@quenty/clipcharacters@12.20.0-canary.ae8d76d.0) (2025-05-10)
6
+ # [12.20.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clipcharacters@12.19.3...@quenty/clipcharacters@12.20.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.20.0-canary.ae8d76d.0",
3
+ "version": "12.20.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.3",
29
- "@quenty/brio": "14.18.0-canary.ae8d76d.0",
30
- "@quenty/characterutils": "12.19.0-canary.ae8d76d.0",
31
- "@quenty/loader": "10.8.3",
32
- "@quenty/maid": "3.4.3",
33
- "@quenty/playerutils": "8.18.0-canary.ae8d76d.0",
34
- "@quenty/remoting": "12.19.0-canary.ae8d76d.0",
35
- "@quenty/servicebag": "11.12.0-canary.ae8d76d.0",
36
- "@quenty/statestack": "14.19.0-canary.ae8d76d.0",
37
- "@quenty/table": "3.7.4",
38
- "@quenty/valueobject": "13.18.0-canary.ae8d76d.0"
28
+ "@quenty/baseobject": "^10.9.0",
29
+ "@quenty/brio": "^14.18.0",
30
+ "@quenty/characterutils": "^12.19.0",
31
+ "@quenty/loader": "^10.9.0",
32
+ "@quenty/maid": "^3.5.0",
33
+ "@quenty/playerutils": "^8.18.0",
34
+ "@quenty/remoting": "^12.19.0",
35
+ "@quenty/servicebag": "^11.12.0",
36
+ "@quenty/statestack": "^14.19.0",
37
+ "@quenty/table": "^3.8.0",
38
+ "@quenty/valueobject": "^13.18.0"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
43
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
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 StateStack = require("StateStack")
10
9
  local ServiceBag = require("ServiceBag")
10
+ local StateStack = require("StateStack")
11
11
 
12
12
  local ClipCharactersServiceClient = {}
13
13
  ClipCharactersServiceClient.ServiceName = "ClipCharactersServiceClient"
@@ -29,20 +29,22 @@ function ClipCharactersServiceClient:PushDisableCharacterCollisionsWithDefault()
29
29
  end
30
30
 
31
31
  function ClipCharactersServiceClient:Start()
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))
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))
42
44
  end
43
45
 
44
46
  function ClipCharactersServiceClient:Destroy()
45
47
  self._maid:DoCleaning()
46
48
  end
47
49
 
48
- return ClipCharactersServiceClient
50
+ 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 Maid = require("Maid")
10
9
  local ClipCharactersServiceConstants = require("ClipCharactersServiceConstants")
10
+ local Maid = require("Maid")
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()