@quenty/qframe 8.0.0 → 9.0.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 +11 -0
- package/LICENSE.md +1 -1
- package/package.json +5 -5
- package/src/Shared/QFrame.story.lua +2 -3
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
|
+
# [9.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/qframe@8.0.0...@quenty/qframe@9.0.0) (2024-02-13)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix bootstrap of test environments and loader samples ([441e4a9](https://github.com/Quenty/NevermoreEngine/commit/441e4a90d19fcc203da2fdedc08e532c20d52f99))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [8.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/qframe@7.2.0...@quenty/qframe@8.0.0) (2024-02-13)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/qframe
|
package/LICENSE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2014-
|
|
3
|
+
Copyright (c) 2014-2024 James Onnen (Quenty)
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/qframe",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.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": "^
|
|
30
|
+
"@quenty/loader": "^9.0.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@quenty/camerastoryutils": "^
|
|
34
|
-
"@quenty/cubicspline": "^
|
|
33
|
+
"@quenty/camerastoryutils": "^9.0.0",
|
|
34
|
+
"@quenty/cubicspline": "^9.0.0",
|
|
35
35
|
"@quenty/maid": "^3.0.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "f113de0adce246ebd8115adf49a80533ede329cc"
|
|
41
41
|
}
|
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).load(script)
|
|
6
6
|
|
|
7
|
-
local Maid = require("Maid")
|
|
8
|
-
local QFrame = require("QFrame")
|
|
9
7
|
local CameraStoryUtils = require("CameraStoryUtils")
|
|
10
8
|
local CubicSplineUtils = require("CubicSplineUtils")
|
|
9
|
+
local Maid = require("Maid")
|
|
10
|
+
local QFrame = require("QFrame")
|
|
11
11
|
|
|
12
12
|
return function(target)
|
|
13
13
|
local maid = Maid.new()
|
|
@@ -19,7 +19,6 @@ return function(target)
|
|
|
19
19
|
CFrame.new(cameraCFrame.Position + cameraCFrame.lookVector*25 - 20*cameraCFrame.RightVector),
|
|
20
20
|
QFrame.new())
|
|
21
21
|
|
|
22
|
-
|
|
23
22
|
local setup = CameraStoryUtils.getInterpolationFactory(maid, viewportFrame, -1, 2, 8, function(qFrame)
|
|
24
23
|
return QFrame.toCFrame(qFrame)
|
|
25
24
|
end)
|