@quenty/characterutils 6.8.0 → 6.9.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,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
+ # [6.9.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/characterutils@6.8.0...@quenty/characterutils@6.9.0) (2023-07-10)
7
+
8
+
9
+ ### Features
10
+
11
+ * Add RxRootPartUtils.observeHumanoidRootPartBrio(character) ([a7dd72e](https://github.com/Quenty/NevermoreEngine/commit/a7dd72e31018ac4c20f68c4caa0c9b6105325af8))
12
+
13
+
14
+
15
+
16
+
6
17
  # [6.8.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/characterutils@6.7.0...@quenty/characterutils@6.8.0) (2023-06-17)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/characterutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/characterutils",
3
- "version": "6.8.0",
3
+ "version": "6.9.0",
4
4
  "description": "CharacterUtils",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,7 +27,7 @@
27
27
  "dependencies": {
28
28
  "@quenty/brio": "^8.14.0",
29
29
  "@quenty/deferred": "^2.1.0",
30
- "@quenty/instanceutils": "^7.15.0",
30
+ "@quenty/instanceutils": "^7.16.0",
31
31
  "@quenty/loader": "^6.2.1",
32
32
  "@quenty/maid": "^2.5.0",
33
33
  "@quenty/promise": "^6.6.0",
@@ -36,5 +36,5 @@
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "dc77d6de09e9eb9d3fd6dafd790c052d8393d38f"
39
+ "gitHead": "6c9093879c4547ca55a7b42842e35ad277cc0f08"
40
40
  }
@@ -0,0 +1,21 @@
1
+ --[=[
2
+ @class RxRootPartUtils
3
+ ]=]
4
+
5
+ local require = require(script.Parent.loader).load(script)
6
+
7
+ local RxInstanceUtils = require("RxInstanceUtils")
8
+
9
+ local RxRootPartUtils = {}
10
+
11
+ --[=[
12
+ Observes the last humanoid root part of a character
13
+
14
+ @param character Model
15
+ @return Brio<BasePart>
16
+ ]=]
17
+ function RxRootPartUtils.observeHumanoidRootPartBrio(character)
18
+ return RxInstanceUtils.observeLastNamedChildBrio(character, "BasePart", "HumanoidRootPart")
19
+ end
20
+
21
+ return RxRootPartUtils