@quenty/clipcharacters 12.20.0-canary.ae8d76d.0 → 12.20.1-canary.d9ea7a3.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 +9 -1
- package/package.json +13 -13
- package/src/Client/ClipCharacters.lua +1 -1
- package/src/Client/ClipCharactersServiceClient.lua +14 -12
- package/src/Server/ClipCharactersService.lua +2 -2
- package/src/Shared/ClipCharactersServiceConstants.lua +2 -2
- package/test/scripts/Server/ServerMain.server.lua +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,15 @@
|
|
|
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
|
+
## [12.20.1-canary.d9ea7a3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clipcharacters@12.20.0...@quenty/clipcharacters@12.20.1-canary.d9ea7a3.0) (2025-05-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/clipcharacters
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [12.20.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clipcharacters@12.19.3...@quenty/clipcharacters@12.20.0) (2025-05-10)
|
|
7
15
|
|
|
8
16
|
|
|
9
17
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/clipcharacters",
|
|
3
|
-
"version": "12.20.
|
|
3
|
+
"version": "12.20.1-canary.d9ea7a3.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.
|
|
29
|
-
"@quenty/brio": "14.18.0
|
|
30
|
-
"@quenty/characterutils": "12.19.0
|
|
31
|
-
"@quenty/loader": "10.
|
|
32
|
-
"@quenty/maid": "3.
|
|
33
|
-
"@quenty/playerutils": "8.18.0
|
|
34
|
-
"@quenty/remoting": "12.19.0
|
|
35
|
-
"@quenty/servicebag": "11.12.
|
|
36
|
-
"@quenty/statestack": "14.19.0
|
|
37
|
-
"@quenty/table": "3.
|
|
38
|
-
"@quenty/valueobject": "13.18.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.1-canary.d9ea7a3.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": "
|
|
43
|
+
"gitHead": "d9ea7a314a7d50712e6abac75d29901c1edea556"
|
|
44
44
|
}
|
|
@@ -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
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
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
|