@quenty/qframe 10.11.0-canary.ae8d76d.0 → 10.11.1-canary.39d0eda.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,7 +3,15 @@
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
- # [10.11.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/qframe@10.10.4...@quenty/qframe@10.11.0-canary.ae8d76d.0) (2025-05-10)
6
+ ## [10.11.1-canary.39d0eda.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/qframe@10.11.0...@quenty/qframe@10.11.1-canary.39d0eda.0) (2025-08-29)
7
+
8
+ **Note:** Version bump only for package @quenty/qframe
9
+
10
+
11
+
12
+
13
+
14
+ # [10.11.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/qframe@10.10.4...@quenty/qframe@10.11.0) (2025-05-10)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/qframe
9
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/qframe",
3
- "version": "10.11.0-canary.ae8d76d.0",
3
+ "version": "10.11.1-canary.39d0eda.0",
4
4
  "description": "CFrame representation as a quaternion for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,15 +27,15 @@
27
27
  "AxisAngles"
28
28
  ],
29
29
  "dependencies": {
30
- "@quenty/loader": "10.8.3"
30
+ "@quenty/loader": "10.9.0"
31
31
  },
32
32
  "devDependencies": {
33
- "@quenty/camerastoryutils": "10.11.0-canary.ae8d76d.0",
34
- "@quenty/cubicspline": "10.9.0-canary.ae8d76d.0",
35
- "@quenty/maid": "3.4.3"
33
+ "@quenty/camerastoryutils": "10.11.1-canary.39d0eda.0",
34
+ "@quenty/cubicspline": "10.9.0",
35
+ "@quenty/maid": "3.5.0"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
40
+ "gitHead": "39d0edaa45d0c4812b43f2a64ad543fac3f79423"
41
41
  }
@@ -2,7 +2,8 @@
2
2
  @class QFrame.story
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
5
+ local require =
6
+ require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
7
 
7
8
  local CameraStoryUtils = require("CameraStoryUtils")
8
9
  local CubicSplineUtils = require("CubicSplineUtils")
@@ -16,20 +17,19 @@ return function(target)
16
17
 
17
18
  local cameraCFrame = workspace.CurrentCamera.CFrame
18
19
  local a = QFrame.fromCFrameClosestTo(
19
- CFrame.new(cameraCFrame.Position + cameraCFrame.lookVector*25 - 20*cameraCFrame.RightVector),
20
- QFrame.new())
20
+ CFrame.new(cameraCFrame.Position + cameraCFrame.lookVector * 25 - 20 * cameraCFrame.RightVector),
21
+ QFrame.new()
22
+ )
21
23
 
22
24
  local setup = CameraStoryUtils.getInterpolationFactory(maid, viewportFrame, -1, 2, 8, function(qFrame)
23
25
  return QFrame.toCFrame(qFrame)
24
26
  end)
25
27
 
26
28
  local function getFinish(t)
27
- local root = CFrame.new(cameraCFrame.Position + cameraCFrame.lookVector*25 + 20*cameraCFrame.RightVector)
28
- * CFrame.Angles(math.pi/3, 2*math.pi/3, 0)
29
+ local root = CFrame.new(cameraCFrame.Position + cameraCFrame.lookVector * 25 + 20 * cameraCFrame.RightVector)
30
+ * CFrame.Angles(math.pi / 3, 2 * math.pi / 3, 0)
29
31
 
30
- return QFrame.fromCFrameClosestTo(
31
- root * CFrame.Angles(0, math.pi*t/3, 0),
32
- QFrame.new())
32
+ return QFrame.fromCFrameClosestTo(root * CFrame.Angles(0, math.pi * t / 3, 0), QFrame.new())
33
33
  end
34
34
 
35
35
  setup(function(t)
@@ -49,12 +49,12 @@ return function(target)
49
49
  end, Color3.new(0.75, 0.75, 0.75), "CFrame:Lerp()")
50
50
 
51
51
  local function slerp(q0, q1, t)
52
- local delta = q1*(q0^-1)
52
+ local delta = q1 * (q0 ^ -1)
53
53
  if delta.W < 0 then
54
54
  delta = QFrame.new(delta.x, delta.y, delta.z, -delta.W, -delta.X, -delta.Y, -delta.Z)
55
55
  end
56
56
 
57
- return(delta^t)*q0
57
+ return (delta ^ t) * q0
58
58
  end
59
59
 
60
60
  setup(function(t)
@@ -79,4 +79,4 @@ return function(target)
79
79
  return function()
80
80
  maid:DoCleaning()
81
81
  end
82
- end
82
+ end