@quenty/ik 15.40.0 → 15.41.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
+ # [15.41.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/ik@15.40.0...@quenty/ik@15.41.0) (2026-01-16)
7
+
8
+
9
+ ### Features
10
+
11
+ * Add SimpleEnum package and interface, to simplify enum usage across Nevermore ([d3040d7](https://github.com/Quenty/NevermoreEngine/commit/d3040d7a07ae7b2586bb982399b401fe19f1eb3f))
12
+
13
+
14
+
15
+
16
+
6
17
  # [15.40.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/ik@15.39.1...@quenty/ik@15.40.0) (2026-01-13)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/ik
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/ik",
3
- "version": "15.40.0",
3
+ "version": "15.41.0",
4
4
  "description": "Inverse Kinematics for characters on Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,29 +29,29 @@
29
29
  "Quenty"
30
30
  ],
31
31
  "dependencies": {
32
- "@quenty/acceltween": "2.5.5",
32
+ "@quenty/acceltween": "2.6.0",
33
33
  "@quenty/baseobject": "10.9.3",
34
34
  "@quenty/binder": "14.28.0",
35
35
  "@quenty/brio": "14.23.0",
36
- "@quenty/camera": "14.30.0",
36
+ "@quenty/camera": "14.31.0",
37
37
  "@quenty/characterutils": "12.25.0",
38
38
  "@quenty/humanoidtracker": "13.24.0",
39
39
  "@quenty/instanceutils": "13.23.0",
40
40
  "@quenty/loader": "10.9.3",
41
41
  "@quenty/maid": "3.5.3",
42
42
  "@quenty/math": "2.7.5",
43
- "@quenty/motor6d": "7.33.0",
43
+ "@quenty/motor6d": "7.34.0",
44
44
  "@quenty/optional": "11.9.3",
45
45
  "@quenty/promise": "10.13.0",
46
46
  "@quenty/qframe": "10.13.0",
47
47
  "@quenty/r15utils": "13.24.0",
48
- "@quenty/ragdoll": "15.39.0",
49
- "@quenty/remoting": "12.24.0",
48
+ "@quenty/ragdoll": "15.40.0",
49
+ "@quenty/remoting": "12.25.0",
50
50
  "@quenty/rx": "13.22.0",
51
51
  "@quenty/servicebag": "11.13.6",
52
52
  "@quenty/signal": "7.11.5",
53
53
  "@quenty/table": "3.9.2",
54
- "@quenty/tie": "10.31.0",
54
+ "@quenty/tie": "10.32.0",
55
55
  "@quenty/valueobject": "13.24.0"
56
56
  },
57
57
  "devDependencies": {
@@ -60,5 +60,5 @@
60
60
  "publishConfig": {
61
61
  "access": "public"
62
62
  },
63
- "gitHead": "fbe4f7a70d781c1b2dd62ec19aec1ce6ce2d742c"
63
+ "gitHead": "8d2e7927e4399b4297a04d474d29bdd85692051d"
64
64
  }
@@ -5,6 +5,7 @@
5
5
 
6
6
  local require = require(script.Parent.loader).load(script)
7
7
 
8
+ local Brio = require("Brio")
8
9
  local Maid = require("Maid")
9
10
  local RagdollMotorData = require("RagdollMotorData")
10
11
  local RxR15Utils = require("RxR15Utils")
@@ -16,7 +17,7 @@ export type ArmName = "Left" | "Right"
16
17
  function ArmIKUtils.ensureMotorAnimated(character: Model, armName: ArmName): Maid.Maid
17
18
  local topMaid = Maid.new()
18
19
 
19
- local function disable(brio)
20
+ local function disable(brio: Brio.Brio<Motor6D>)
20
21
  if brio:IsDead() then
21
22
  return
22
23
  end