@quenty/ik 15.9.1 → 15.9.2-canary.497.2df557a.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,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
+ ## [15.9.2-canary.497.2df557a.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/ik@15.9.1...@quenty/ik@15.9.2-canary.497.2df557a.0) (2024-09-20)
7
+
8
+ **Note:** Version bump only for package @quenty/ik
9
+
10
+
11
+
12
+
13
+
6
14
  ## [15.9.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/ik@15.9.0...@quenty/ik@15.9.1) (2024-09-20)
7
15
 
8
16
  **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.9.1",
3
+ "version": "15.9.2-canary.497.2df557a.0",
4
4
  "description": "Inverse Kinematics for characters on Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,36 +26,36 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/acceltween": "^2.5.0",
30
- "@quenty/baseobject": "^10.4.0",
31
- "@quenty/binder": "^14.6.0",
32
- "@quenty/brio": "^14.5.0",
33
- "@quenty/camera": "^14.7.1",
34
- "@quenty/characterutils": "^12.5.0",
35
- "@quenty/humanoidtracker": "^13.5.0",
36
- "@quenty/instanceutils": "^13.5.0",
37
- "@quenty/loader": "^10.4.0",
38
- "@quenty/maid": "^3.3.0",
39
- "@quenty/math": "^2.7.0",
40
- "@quenty/motor6d": "^7.7.1",
41
- "@quenty/optional": "^11.4.0",
42
- "@quenty/promise": "^10.4.0",
43
- "@quenty/qframe": "^10.4.0",
44
- "@quenty/r15utils": "^13.5.0",
45
- "@quenty/ragdoll": "^15.8.1",
46
- "@quenty/remoting": "^12.6.0",
47
- "@quenty/rx": "^13.5.0",
48
- "@quenty/servicebag": "^11.5.1",
49
- "@quenty/signal": "^7.4.0",
50
- "@quenty/table": "^3.5.0",
51
- "@quenty/tie": "^10.7.0",
52
- "@quenty/valueobject": "^13.5.0"
29
+ "@quenty/acceltween": "2.5.0",
30
+ "@quenty/baseobject": "10.4.1-canary.497.2df557a.0",
31
+ "@quenty/binder": "14.6.1-canary.497.2df557a.0",
32
+ "@quenty/brio": "14.5.1-canary.497.2df557a.0",
33
+ "@quenty/camera": "14.7.2-canary.497.2df557a.0",
34
+ "@quenty/characterutils": "12.5.1-canary.497.2df557a.0",
35
+ "@quenty/humanoidtracker": "13.5.1-canary.497.2df557a.0",
36
+ "@quenty/instanceutils": "13.5.1-canary.497.2df557a.0",
37
+ "@quenty/loader": "10.4.1-canary.497.2df557a.0",
38
+ "@quenty/maid": "3.3.0",
39
+ "@quenty/math": "2.7.0",
40
+ "@quenty/motor6d": "7.7.2-canary.497.2df557a.0",
41
+ "@quenty/optional": "11.4.1-canary.497.2df557a.0",
42
+ "@quenty/promise": "10.4.1-canary.497.2df557a.0",
43
+ "@quenty/qframe": "10.4.1-canary.497.2df557a.0",
44
+ "@quenty/r15utils": "13.5.1-canary.497.2df557a.0",
45
+ "@quenty/ragdoll": "15.8.2-canary.497.2df557a.0",
46
+ "@quenty/remoting": "12.6.1-canary.497.2df557a.0",
47
+ "@quenty/rx": "13.5.1-canary.497.2df557a.0",
48
+ "@quenty/servicebag": "11.5.2-canary.497.2df557a.0",
49
+ "@quenty/signal": "7.4.1-canary.497.2df557a.0",
50
+ "@quenty/table": "3.5.0",
51
+ "@quenty/tie": "10.7.1-canary.497.2df557a.0",
52
+ "@quenty/valueobject": "13.5.1-canary.497.2df557a.0"
53
53
  },
54
54
  "devDependencies": {
55
- "@quenty/rigbuilderutils": "^10.7.0"
55
+ "@quenty/rigbuilderutils": "10.7.1-canary.497.2df557a.0"
56
56
  },
57
57
  "publishConfig": {
58
58
  "access": "public"
59
59
  },
60
- "gitHead": "a0dc70feb2e9ae87eccca4193951975ff59b7aae"
60
+ "gitHead": "2df557a9a5463c2c7beb257ff9f7786ac8ad746a"
61
61
  }
@@ -47,7 +47,7 @@ function ArmIKBase.new(humanoid, armName, serviceBag)
47
47
  elseif self._armName == "Right" then
48
48
  self._direction = -1
49
49
  else
50
- error(("[ArmIKBase] - Bad armName %q"):format(tostring(armName)))
50
+ error(string.format("[ArmIKBase] - Bad armName %q", tostring(armName)))
51
51
  end
52
52
 
53
53
  self._gripping = ValueObject.new(false, "boolean")
@@ -50,7 +50,7 @@ end
50
50
  function IKResource:Get(descendantName)
51
51
  local resource = self._descendantLookupMap[descendantName]
52
52
  if not resource then
53
- error(("[IKResource.Get] - Resource %q does not exist"):format(tostring(descendantName)))
53
+ error(string.format("[IKResource.Get] - Resource %q does not exist", tostring(descendantName)))
54
54
  end
55
55
 
56
56
  local result = resource:GetInstance()