@quenty/humanoidteleportutils 10.11.0 → 10.11.1
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 +11 -0
- package/package.json +2 -2
- package/src/Shared/HumanoidTeleportUtils.lua +2 -2
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
|
+
## [10.11.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidteleportutils@10.11.0...@quenty/humanoidteleportutils@10.11.1) (2026-05-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix direction utils luau-lsp ([4505987](https://github.com/Quenty/NevermoreEngine/commit/4505987af5ccdd7d116f3f88ccfe568f85138ba7))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [10.11.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidteleportutils@10.10.0...@quenty/humanoidteleportutils@10.11.0) (2026-04-23)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/humanoidteleportutils
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/humanoidteleportutils",
|
|
3
|
-
"version": "10.11.
|
|
3
|
+
"version": "10.11.1",
|
|
4
4
|
"description": "Utility for teleporting humanoids",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "754fea6847285062ee132f5f38d75d00fad177d4"
|
|
39
39
|
}
|
|
@@ -113,13 +113,13 @@ function HumanoidTeleportUtils.teleportParts(
|
|
|
113
113
|
|
|
114
114
|
local relCFrame = {}
|
|
115
115
|
for _, part in parts do
|
|
116
|
-
relCFrame[part] = rootPartCFrame:
|
|
116
|
+
relCFrame[part] = rootPartCFrame:ToObjectSpace(part.CFrame)
|
|
117
117
|
end
|
|
118
118
|
|
|
119
119
|
relCFrame[rootPart] = nil
|
|
120
120
|
|
|
121
121
|
for part, relative in relCFrame do
|
|
122
|
-
part.CFrame = newRootPartCFrame:
|
|
122
|
+
part.CFrame = newRootPartCFrame:ToWorldSpace(relative)
|
|
123
123
|
end
|
|
124
124
|
|
|
125
125
|
rootPart.CFrame = newRootPartCFrame
|