@quenty/r15utils 5.2.0 → 6.0.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 +8 -0
- package/package.json +4 -4
- package/src/Shared/RxR15Utils.lua +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/r15utils@5.2.0...@quenty/r15utils@6.0.0) (2022-08-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/r15utils
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [5.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/r15utils@5.1.0...@quenty/r15utils@5.2.0) (2022-07-31)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/r15utils
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/r15utils",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "Utility methods for R15",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/brio": "^
|
|
29
|
-
"@quenty/instanceutils": "^
|
|
28
|
+
"@quenty/brio": "^7.0.0",
|
|
29
|
+
"@quenty/instanceutils": "^6.0.0",
|
|
30
30
|
"@quenty/loader": "^5.0.0"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "dbb62609f980983cc32da90acfef13e30ed41113"
|
|
36
36
|
}
|
|
@@ -22,7 +22,7 @@ function RxR15Utils.observeRigAttachmentBrio(character, partName, attachmentName
|
|
|
22
22
|
assert(type(partName) == "string", "Bad partName")
|
|
23
23
|
assert(type(attachmentName) == "string", "Bad attachmentName")
|
|
24
24
|
|
|
25
|
-
return RxR15Utils.
|
|
25
|
+
return RxR15Utils.observeCharacterPartBrio(character, partName)
|
|
26
26
|
:Pipe({
|
|
27
27
|
RxBrioUtils.switchMapBrio(function(part)
|
|
28
28
|
return RxInstanceUtils.observeLastNamedChildBrio(part, "Attachment", attachmentName)
|
|
@@ -56,7 +56,7 @@ end
|
|
|
56
56
|
@param partName string
|
|
57
57
|
@return Observable<Brio<BasePart>>
|
|
58
58
|
]=]
|
|
59
|
-
function RxR15Utils.
|
|
59
|
+
function RxR15Utils.observeCharacterPartBrio(character, partName)
|
|
60
60
|
assert(typeof(character) == "Instance", "Bad character")
|
|
61
61
|
assert(type(partName) == "string", "Bad partName")
|
|
62
62
|
|