@quenty/blend 6.2.0 → 6.3.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/Shared/Blend/SpringObject.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.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@6.2.0...@quenty/blend@6.3.0) (2022-11-04)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix setting velocity resetting position in blend spring object ([8285795](https://github.com/Quenty/NevermoreEngine/commit/8285795fb5c10305ffa7e5e5f11d6ad780d227bc))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [6.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@6.1.1...@quenty/blend@6.2.0) (2022-10-23)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/blend",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.0",
|
|
4
4
|
"description": "Declarative UI system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"@quenty/contentproviderutils": "^6.0.0",
|
|
46
46
|
"@quenty/playerthumbnailutils": "^6.0.0"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "1cf7e4838d864bdce2e5751b6c97d38bce29e9a6"
|
|
49
49
|
}
|
|
@@ -235,7 +235,7 @@ function SpringObject:_getSpringForType(converted)
|
|
|
235
235
|
return self._currentSpring
|
|
236
236
|
else
|
|
237
237
|
local currentType = typeof(SpringUtils.fromLinearIfNeeded(self._currentSpring.Value))
|
|
238
|
-
if currentType == typeof(converted) then
|
|
238
|
+
if currentType == typeof(SpringUtils.fromLinearIfNeeded(converted)) then
|
|
239
239
|
return self._currentSpring
|
|
240
240
|
else
|
|
241
241
|
local oldDamper = self._currentSpring.d
|