@quenty/r15utils 13.6.0 → 13.8.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,25 @@
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
+ # [13.8.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/r15utils@13.7.0...@quenty/r15utils@13.8.0) (2024-10-04)
7
+
8
+
9
+ ### Features
10
+
11
+ * Add RxR15Utils.observeShoulderRigAttachmentBrio(character, side) ([fd78992](https://github.com/Quenty/NevermoreEngine/commit/fd78992905ee18966043feeb9c07756332e9dab5))
12
+
13
+
14
+
15
+
16
+
17
+ # [13.7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/r15utils@13.6.0...@quenty/r15utils@13.7.0) (2024-09-25)
18
+
19
+ **Note:** Version bump only for package @quenty/r15utils
20
+
21
+
22
+
23
+
24
+
6
25
  # [13.6.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/r15utils@13.5.0...@quenty/r15utils@13.6.0) (2024-09-25)
7
26
 
8
27
  **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": "13.6.0",
3
+ "version": "13.8.0",
4
4
  "description": "Utility methods for R15 Characters",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,12 +25,12 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/brio": "^14.6.0",
29
- "@quenty/instanceutils": "^13.6.0",
30
- "@quenty/loader": "^10.5.0"
28
+ "@quenty/brio": "^14.8.0",
29
+ "@quenty/instanceutils": "^13.8.0",
30
+ "@quenty/loader": "^10.6.0"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"
34
34
  },
35
- "gitHead": "41715b15e2b48b2d22ff4f5277a8d4b7a0d32ef3"
35
+ "gitHead": "035abfa088c854a73e1c65b350267eaa17669646"
36
36
  }
@@ -91,5 +91,14 @@ function RxR15Utils.observeHumanoidScaleProperty(humanoid, scaleValueName)
91
91
  })
92
92
  end
93
93
 
94
+ function RxR15Utils.observeShoulderRigAttachmentBrio(character, side)
95
+ if side == "Left" then
96
+ return RxR15Utils.observeRigAttachmentBrio(character, "UpperTorso", "LeftShoulderRigAttachment")
97
+ elseif side == "Right" then
98
+ return RxR15Utils.observeRigAttachmentBrio(character, "UpperTorso", "RightShoulderRigAttachment")
99
+ else
100
+ error("Bad side")
101
+ end
102
+ end
94
103
 
95
104
  return RxR15Utils