@quenty/camera 14.20.2 → 14.20.3

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
+ ## [14.20.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.20.2...@quenty/camera@14.20.3) (2025-04-10)
7
+
8
+ **Note:** Version bump only for package @quenty/camera
9
+
10
+
11
+
12
+
13
+
6
14
  ## [14.20.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.20.0...@quenty/camera@14.20.2) (2025-04-07)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/camera",
3
- "version": "14.20.2",
3
+ "version": "14.20.3",
4
4
  "description": "Quenty's camera system for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,26 +25,26 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/acceltween": "^2.5.2",
29
- "@quenty/baseobject": "^10.8.2",
28
+ "@quenty/acceltween": "^2.5.3",
29
+ "@quenty/baseobject": "^10.8.3",
30
30
  "@quenty/cframeutils": "^5.5.3",
31
- "@quenty/cubicspline": "^10.8.2",
32
- "@quenty/ducktype": "^5.8.3",
33
- "@quenty/inputobjectutils": "^4.18.2",
34
- "@quenty/loader": "^10.8.2",
35
- "@quenty/maid": "^3.4.2",
31
+ "@quenty/cubicspline": "^10.8.3",
32
+ "@quenty/ducktype": "^5.8.4",
33
+ "@quenty/inputobjectutils": "^4.18.3",
34
+ "@quenty/loader": "^10.8.3",
35
+ "@quenty/maid": "^3.4.3",
36
36
  "@quenty/math": "^2.7.3",
37
- "@quenty/qframe": "^10.10.3",
38
- "@quenty/servicebag": "^11.11.3",
39
- "@quenty/spring": "^10.8.3",
40
- "@quenty/valueobject": "^13.17.2",
41
- "@quenty/vector3utils": "^10.8.3"
37
+ "@quenty/qframe": "^10.10.4",
38
+ "@quenty/servicebag": "^11.11.4",
39
+ "@quenty/spring": "^10.8.4",
40
+ "@quenty/valueobject": "^13.17.3",
41
+ "@quenty/vector3utils": "^10.8.4"
42
42
  },
43
43
  "devDependencies": {
44
- "@quenty/camerastoryutils": "^10.10.3"
44
+ "@quenty/camerastoryutils": "^10.10.4"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public"
48
48
  },
49
- "gitHead": "64def70499ec067077ee39f279936b620b217847"
49
+ "gitHead": "b06c070ae91d5dab7bd8de6e290ad2caabb15d8f"
50
50
  }
@@ -17,12 +17,11 @@ CameraStack.__index = CameraStack
17
17
 
18
18
  export type CameraStack = typeof(setmetatable(
19
19
  {} :: {
20
- _maid: _Maid.Maid,
21
20
  _stack: { any },
22
21
  _disabledSet: { [string]: boolean },
23
22
  },
24
- { __index = CameraStack }
25
- ))
23
+ {} :: typeof({ __index = CameraStack })
24
+ )) & BaseObject.BaseObject
26
25
 
27
26
  --[=[
28
27
  Constructs a new camera stack
@@ -30,7 +29,7 @@ export type CameraStack = typeof(setmetatable(
30
29
  @return CameraStack
31
30
  ]=]
32
31
  function CameraStack.new(): CameraStack
33
- local self = setmetatable(BaseObject.new(), CameraStack)
32
+ local self: CameraStack = setmetatable(BaseObject.new(), CameraStack)
34
33
 
35
34
  self._stack = {}
36
35
  self._disabledSet = {}
@@ -22,7 +22,7 @@ export type CameraState = typeof(setmetatable(
22
22
  Velocity: Vector3,
23
23
  FieldOfView: number,
24
24
  },
25
- { __index = CameraState }
25
+ {} :: typeof({ __index = CameraState })
26
26
  ))
27
27
 
28
28
  --[=[
@@ -35,7 +35,7 @@ function CameraState.new(
35
35
  cameraFrame: (CameraFrame.CameraFrame | Camera)?,
36
36
  cameraFrameDerivative: CameraFrame.CameraFrame?
37
37
  ): CameraState
38
- local self = setmetatable({} :: any, CameraState)
38
+ local self: CameraState = setmetatable({} :: any, CameraState)
39
39
 
40
40
  if typeof(cameraFrame) == "Instance" then
41
41
  assert(cameraFrame:IsA("Camera"))
@@ -39,7 +39,7 @@ export type CameraFrame = typeof(setmetatable(
39
39
  ]=]
40
40
  QFrame: QFrame.QFrame,
41
41
  },
42
- { __index = CameraFrame }
42
+ {} :: typeof({ __index = CameraFrame })
43
43
  ))
44
44
 
45
45
  --[=[