@quenty/camera 14.26.6 → 14.26.7
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 +8 -0
- package/package.json +16 -16
- package/src/Client/CameraStackService.lua +1 -0
- package/src/Client/CameraUtils.story.lua +4 -2
- package/src/Client/Effects/FadeBetween/FadeBetweenCamera.lua +1 -0
- package/src/Client/Effects/FadeBetween/FadeBetweenCamera2.lua +1 -0
- package/src/Client/Effects/FadeBetween/FadeBetweenCamera4.lua +1 -0
- package/src/Client/Effects/ImpulseCamera.story.lua +4 -2
- package/src/Client/Utility/CameraFrame.story.lua +4 -2
- package/src/Client/Utility/CameraSubjectUtils.lua +1 -0
- package/test/scripts/Client/ClientMain.client.lua +1 -0
- package/test/scripts/Server/ServerMain.server.lua +1 -0
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
|
+
## [14.26.7](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.26.6...@quenty/camera@14.26.7) (2026-01-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/camera
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [14.26.6](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.26.5...@quenty/camera@14.26.6) (2025-12-31)
|
|
7
15
|
|
|
8
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/camera",
|
|
3
|
-
"version": "14.26.
|
|
3
|
+
"version": "14.26.7",
|
|
4
4
|
"description": "Quenty's camera system for Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,27 +26,27 @@
|
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@quenty/acceltween": "^2.5.3",
|
|
29
|
-
"@quenty/baseobject": "^10.9.
|
|
29
|
+
"@quenty/baseobject": "^10.9.1",
|
|
30
30
|
"@quenty/cframeutils": "^5.5.4",
|
|
31
|
-
"@quenty/cubicspline": "^10.9.
|
|
32
|
-
"@quenty/draw": "^7.9.
|
|
33
|
-
"@quenty/ducktype": "^5.9.
|
|
34
|
-
"@quenty/inputobjectutils": "^4.21.
|
|
35
|
-
"@quenty/loader": "^10.9.
|
|
36
|
-
"@quenty/maid": "^3.5.
|
|
31
|
+
"@quenty/cubicspline": "^10.9.1",
|
|
32
|
+
"@quenty/draw": "^7.9.3",
|
|
33
|
+
"@quenty/ducktype": "^5.9.1",
|
|
34
|
+
"@quenty/inputobjectutils": "^4.21.5",
|
|
35
|
+
"@quenty/loader": "^10.9.1",
|
|
36
|
+
"@quenty/maid": "^3.5.1",
|
|
37
37
|
"@quenty/math": "^2.7.3",
|
|
38
|
-
"@quenty/qframe": "^10.12.
|
|
39
|
-
"@quenty/rx": "^13.20.
|
|
40
|
-
"@quenty/servicebag": "^11.13.
|
|
41
|
-
"@quenty/spring": "^10.9.
|
|
42
|
-
"@quenty/valueobject": "^13.21.
|
|
43
|
-
"@quenty/vector3utils": "^10.9.
|
|
38
|
+
"@quenty/qframe": "^10.12.5",
|
|
39
|
+
"@quenty/rx": "^13.20.4",
|
|
40
|
+
"@quenty/servicebag": "^11.13.4",
|
|
41
|
+
"@quenty/spring": "^10.9.2",
|
|
42
|
+
"@quenty/valueobject": "^13.21.7",
|
|
43
|
+
"@quenty/vector3utils": "^10.9.1"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@quenty/camerastoryutils": "^10.12.
|
|
46
|
+
"@quenty/camerastoryutils": "^10.12.5"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "44e41814ddc3c14c3879320a10ed2d8e88103a4c"
|
|
52
52
|
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
--!nonstrict
|
|
1
2
|
--[[
|
|
2
3
|
@class CameraUtils.story
|
|
3
4
|
]]
|
|
4
5
|
|
|
5
|
-
local require =
|
|
6
|
-
|
|
6
|
+
local require = (require :: any)(
|
|
7
|
+
game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
|
|
8
|
+
).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
|
|
7
9
|
|
|
8
10
|
local Maid = require("Maid")
|
|
9
11
|
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
--!nonstrict
|
|
1
2
|
--[[
|
|
2
3
|
@class ImpulseCamera.story
|
|
3
4
|
]]
|
|
4
5
|
|
|
5
|
-
local require =
|
|
6
|
-
|
|
6
|
+
local require = (require :: any)(
|
|
7
|
+
game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
|
|
8
|
+
).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
|
|
7
9
|
|
|
8
10
|
local RunService = game:GetService("RunService")
|
|
9
11
|
local Workspace = game:GetService("Workspace")
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
--!nonstrict
|
|
1
2
|
--[[
|
|
2
3
|
@class CameraFrame.story
|
|
3
4
|
]]
|
|
4
5
|
|
|
5
|
-
local require =
|
|
6
|
-
|
|
6
|
+
local require = (require :: any)(
|
|
7
|
+
game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
|
|
8
|
+
).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
|
|
7
9
|
|
|
8
10
|
local CameraFrame = require("CameraFrame")
|
|
9
11
|
local CameraStoryUtils = require("CameraStoryUtils")
|