@quenty/camerastoryutils 10.12.0 → 10.12.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
+ ## [10.12.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camerastoryutils@10.12.0...@quenty/camerastoryutils@10.12.1) (2025-11-12)
7
+
8
+ **Note:** Version bump only for package @quenty/camerastoryutils
9
+
10
+
11
+
12
+
13
+
6
14
  # [10.12.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camerastoryutils@10.11.0...@quenty/camerastoryutils@10.12.0) (2025-08-29)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/camerastoryutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/camerastoryutils",
3
- "version": "10.12.0",
3
+ "version": "10.12.1",
4
4
  "description": "CameraStoryUtils - utility functions for 3D viewport hoarcekat stories.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -34,5 +34,5 @@
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "5f62fff9bdc4089be64a8380e8deafa77647c85a"
37
+ "gitHead": "f14f6bf0f8ca2b041c70ed27b68ad385a76e6164"
38
38
  }
@@ -50,7 +50,7 @@ function CameraStoryUtils.setupViewportFrame(maid: Maid.Maid, target: GuiBase)
50
50
  viewportFrame.ZIndex = 0
51
51
  viewportFrame.BorderSizePixel = 0
52
52
  viewportFrame.BackgroundColor3 = Color3.new(0.9, 0.9, 0.85)
53
- viewportFrame.Size = UDim2.new(1, 0, 1, 0)
53
+ viewportFrame.Size = UDim2.fromScale(1, 1)
54
54
  maid:GiveTask(viewportFrame)
55
55
 
56
56
  local reflectedCamera = CameraStoryUtils.reflectCamera(maid, workspace.CurrentCamera)
@@ -159,7 +159,7 @@ function CameraStoryUtils.getInterpolationFactory(
159
159
  maid:GiveTask(label)
160
160
 
161
161
  local size = TextService:GetTextSize(labelText, label.TextSize, label.Font, Vector2.new(1e6, 1e6))
162
- label.Size = UDim2.new(0, size.x + 20, 0, 20)
162
+ label.Size = UDim2.fromOffset(size.x + 20, 20)
163
163
 
164
164
  local uiCorner = Instance.new("UICorner")
165
165
  uiCorner.CornerRadius = UDim.new(0.5, 0)