@quenty/viewport 11.27.2 → 11.27.3-canary.607f741.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
+ ## [11.27.3-canary.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/viewport@11.27.2...@quenty/viewport@11.27.3-canary.607f741.0) (2025-12-28)
7
+
8
+ **Note:** Version bump only for package @quenty/viewport
9
+
10
+
11
+
12
+
13
+
6
14
  ## [11.27.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/viewport@11.27.1...@quenty/viewport@11.27.2) (2025-11-22)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/viewport
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/viewport",
3
- "version": "11.27.2",
3
+ "version": "11.27.3-canary.607f741.0",
4
4
  "description": "Rendering functionality for viewportFrames",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -24,26 +24,26 @@
24
24
  "Quenty"
25
25
  ],
26
26
  "dependencies": {
27
- "@quenty/adorneeutils": "^3.3.3",
28
- "@quenty/baseobject": "^10.9.0",
29
- "@quenty/basicpane": "^13.21.2",
30
- "@quenty/blend": "^12.22.2",
31
- "@quenty/camera": "^14.26.2",
32
- "@quenty/geometryutils": "^6.9.2",
33
- "@quenty/inputobjectutils": "^4.21.0",
34
- "@quenty/loader": "^10.9.0",
35
- "@quenty/maid": "^3.5.0",
36
- "@quenty/math": "^2.7.3",
37
- "@quenty/rx": "^13.20.0",
38
- "@quenty/signal": "^7.11.1",
39
- "@quenty/spring": "^10.9.1",
40
- "@quenty/valueobject": "^13.21.2"
27
+ "@quenty/adorneeutils": "3.3.3",
28
+ "@quenty/baseobject": "10.9.0",
29
+ "@quenty/basicpane": "13.21.3-canary.607f741.0",
30
+ "@quenty/blend": "12.22.3-canary.607f741.0",
31
+ "@quenty/camera": "14.26.3-canary.607f741.0",
32
+ "@quenty/geometryutils": "6.9.2",
33
+ "@quenty/inputobjectutils": "4.21.1-canary.607f741.0",
34
+ "@quenty/loader": "10.9.0",
35
+ "@quenty/maid": "3.5.0",
36
+ "@quenty/math": "2.7.3",
37
+ "@quenty/rx": "13.20.0",
38
+ "@quenty/signal": "7.11.1",
39
+ "@quenty/spring": "10.9.1",
40
+ "@quenty/valueobject": "13.21.3-canary.607f741.0"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
45
  "devDependencies": {
46
- "@quenty/insertserviceutils": "^10.12.0"
46
+ "@quenty/insertserviceutils": "10.12.0"
47
47
  },
48
- "gitHead": "b3a8753cbae8b4312b1ed66fce1577a94015c156"
48
+ "gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
49
49
  }
@@ -40,19 +40,21 @@ local Viewport = setmetatable({}, BasicPane)
40
40
  Viewport.ClassName = "Viewport"
41
41
  Viewport.__index = Viewport
42
42
 
43
- export type Viewport = typeof(setmetatable(
44
- {} :: {
45
- _current: ValueObject.ValueObject<Instance?>,
46
- _transparency: ValueObject.ValueObject<number>,
47
- _absoluteSize: ValueObject.ValueObject<Vector2>,
48
- _fieldOfView: ValueObject.ValueObject<number>,
49
- _controlsEnabled: ValueObject.ValueObject<boolean>,
50
- _rotationYawSpring: SpringObject.SpringObject<number>,
51
- _rotationPitchSpring: SpringObject.SpringObject<number>,
52
- _notifyInstanceSizeChanged: Signal.Signal<()>,
53
- },
54
- {} :: typeof({ __index = Viewport })
55
- )) & BasicPane.BasicPane
43
+ export type Viewport =
44
+ typeof(setmetatable(
45
+ {} :: {
46
+ _current: ValueObject.ValueObject<Instance?>,
47
+ _transparency: ValueObject.ValueObject<number>,
48
+ _absoluteSize: ValueObject.ValueObject<Vector2>,
49
+ _fieldOfView: ValueObject.ValueObject<number>,
50
+ _controlsEnabled: ValueObject.ValueObject<boolean>,
51
+ _rotationYawSpring: SpringObject.SpringObject<number>,
52
+ _rotationPitchSpring: SpringObject.SpringObject<number>,
53
+ _notifyInstanceSizeChanged: Signal.Signal<()>,
54
+ },
55
+ {} :: typeof({ __index = Viewport })
56
+ ))
57
+ & BasicPane.BasicPane
56
58
 
57
59
  --[=[
58
60
  Constructs a new viewport. Unlike a normal [BasicPane] this will not render anything
@@ -17,14 +17,16 @@ local ViewportControls = setmetatable({}, BaseObject)
17
17
  ViewportControls.ClassName = "ViewportControls"
18
18
  ViewportControls.__index = ViewportControls
19
19
 
20
- export type ViewportControls = typeof(setmetatable(
21
- {} :: {
22
- _obj: ViewportFrame,
23
- _viewportModel: any,
24
- _enabled: ValueObject.ValueObject<boolean>,
25
- },
26
- {} :: typeof({ __index = ViewportControls })
27
- )) & BaseObject.BaseObject
20
+ export type ViewportControls =
21
+ typeof(setmetatable(
22
+ {} :: {
23
+ _obj: ViewportFrame,
24
+ _viewportModel: any,
25
+ _enabled: ValueObject.ValueObject<boolean>,
26
+ },
27
+ {} :: typeof({ __index = ViewportControls })
28
+ ))
29
+ & BaseObject.BaseObject
28
30
 
29
31
  --[=[
30
32
  Create the controls for dragging.