@quenty/camerastoryutils 6.5.0 → 6.6.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 +11 -0
- package/package.json +2 -2
- package/src/Client/CameraStoryUtils.lua +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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
|
+
# [6.6.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camerastoryutils@6.5.0...@quenty/camerastoryutils@6.6.0) (2023-05-26)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Initial refactor of guis to use ValueObject instead of ValueObject ([723aba0](https://github.com/Quenty/NevermoreEngine/commit/723aba0208cae7e06c9d8bf2d8f0092d042d70ea))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [6.5.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camerastoryutils@6.4.1...@quenty/camerastoryutils@6.5.0) (2023-04-10)
|
|
7
18
|
|
|
8
19
|
**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": "6.
|
|
3
|
+
"version": "6.6.0",
|
|
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": "
|
|
37
|
+
"gitHead": "11058e90e51ea83d3dad6ae9abe59cc19c36b94b"
|
|
38
38
|
}
|
|
@@ -123,7 +123,7 @@ function CameraStoryUtils.getInterpolationFactory(maid, viewportFrame, low, high
|
|
|
123
123
|
assert(type(interpolate) == "function", "Bad interpolate")
|
|
124
124
|
assert(typeof(color) == "Color3", "Bad color")
|
|
125
125
|
|
|
126
|
-
labelOffset = labelOffset or Vector2.
|
|
126
|
+
labelOffset = labelOffset or Vector2.zero
|
|
127
127
|
|
|
128
128
|
maid:GivePromise(CameraStoryUtils.promiseCrate(maid, viewportFrame, {
|
|
129
129
|
Color = color;
|