@quenty/camera 14.26.0 → 14.26.1

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.26.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.26.0...@quenty/camera@14.26.1) (2025-11-12)
7
+
8
+ **Note:** Version bump only for package @quenty/camera
9
+
10
+
11
+
12
+
13
+
6
14
  # [14.26.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.25.0...@quenty/camera@14.26.0) (2025-10-08)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/camera
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/camera",
3
- "version": "14.26.0",
3
+ "version": "14.26.1",
4
4
  "description": "Quenty's camera system for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -34,18 +34,18 @@
34
34
  "@quenty/loader": "^10.9.0",
35
35
  "@quenty/maid": "^3.5.0",
36
36
  "@quenty/math": "^2.7.3",
37
- "@quenty/qframe": "^10.12.0",
37
+ "@quenty/qframe": "^10.12.1",
38
38
  "@quenty/rx": "^13.20.0",
39
39
  "@quenty/servicebag": "^11.13.1",
40
- "@quenty/spring": "^10.9.0",
41
- "@quenty/valueobject": "^13.21.0",
40
+ "@quenty/spring": "^10.9.1",
41
+ "@quenty/valueobject": "^13.21.1",
42
42
  "@quenty/vector3utils": "^10.9.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@quenty/camerastoryutils": "^10.12.0"
45
+ "@quenty/camerastoryutils": "^10.12.1"
46
46
  },
47
47
  "publishConfig": {
48
48
  "access": "public"
49
49
  },
50
- "gitHead": "d396d6f77d25ba25f1f45bbc252216131f88eeed"
50
+ "gitHead": "f14f6bf0f8ca2b041c70ed27b68ad385a76e6164"
51
51
  }
@@ -15,7 +15,7 @@ return function(target: Instance)
15
15
  local viewportFrame = maid:Add(Instance.new("ViewportFrame"))
16
16
  viewportFrame.BorderSizePixel = 0
17
17
  viewportFrame.BackgroundColor3 = Color3.new(0.7, 0.7, 0.7)
18
- viewportFrame.Size = UDim2.new(1, 0, 1, 0)
18
+ viewportFrame.Size = UDim2.fromScale(1, 1)
19
19
 
20
20
  local camera: Camera = maid:Add(Instance.new("Camera"))
21
21
  camera.FieldOfViewMode = Enum.FieldOfViewMode.Diagonal
@@ -53,7 +53,7 @@ return function(target)
53
53
  local button = Instance.new("TextButton")
54
54
  button.Text = text
55
55
  button.BorderSizePixel = 0
56
- button.Size = UDim2.new(0, 100, 0, 50)
56
+ button.Size = UDim2.fromOffset(100, 50)
57
57
  button.Parent = buttonContainer
58
58
  button.Font = Enum.Font.FredokaOne
59
59
  button.TextSize = 20