@quenty/blend 12.0.0 → 12.1.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 +15 -15
- package/src/Shared/Blend/SpringObject.lua +2 -6
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
|
+
# [12.1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@12.0.0...@quenty/blend@12.1.0) (2024-03-09)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* SetTarget properly in SpringObject ([94358e6](https://github.com/Quenty/NevermoreEngine/commit/94358e6d3cda41a0ecc65672ca21ae1efa13aa4e))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [12.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@11.0.0...@quenty/blend@12.0.0) (2024-02-14)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/blend
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/blend",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.1.0",
|
|
4
4
|
"description": "Declarative UI system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -28,23 +28,23 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@quenty/acceltween": "^2.3.0",
|
|
31
|
-
"@quenty/brio": "^14.
|
|
32
|
-
"@quenty/ducktype": "^5.
|
|
33
|
-
"@quenty/instanceutils": "^13.
|
|
34
|
-
"@quenty/loader": "^10.
|
|
35
|
-
"@quenty/maid": "^3.
|
|
36
|
-
"@quenty/promise": "^10.
|
|
37
|
-
"@quenty/rx": "^13.
|
|
38
|
-
"@quenty/signal": "^7.
|
|
39
|
-
"@quenty/spring": "^10.
|
|
31
|
+
"@quenty/brio": "^14.1.0",
|
|
32
|
+
"@quenty/ducktype": "^5.1.0",
|
|
33
|
+
"@quenty/instanceutils": "^13.1.0",
|
|
34
|
+
"@quenty/loader": "^10.1.0",
|
|
35
|
+
"@quenty/maid": "^3.1.0",
|
|
36
|
+
"@quenty/promise": "^10.1.0",
|
|
37
|
+
"@quenty/rx": "^13.1.0",
|
|
38
|
+
"@quenty/signal": "^7.1.0",
|
|
39
|
+
"@quenty/spring": "^10.1.0",
|
|
40
40
|
"@quenty/steputils": "^3.3.0",
|
|
41
41
|
"@quenty/string": "^3.1.0",
|
|
42
|
-
"@quenty/valuebaseutils": "^13.
|
|
43
|
-
"@quenty/valueobject": "^13.
|
|
42
|
+
"@quenty/valuebaseutils": "^13.1.0",
|
|
43
|
+
"@quenty/valueobject": "^13.1.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@quenty/contentproviderutils": "^12.
|
|
47
|
-
"@quenty/playerthumbnailutils": "^10.
|
|
46
|
+
"@quenty/contentproviderutils": "^12.1.0",
|
|
47
|
+
"@quenty/playerthumbnailutils": "^10.1.0"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "e0148dde5ca3864389a0faa2da66153a776acc1e"
|
|
50
50
|
}
|
|
@@ -237,12 +237,8 @@ function SpringObject:SetTarget(value, doNotAnimate)
|
|
|
237
237
|
assert(converted, "Not a valid converted value")
|
|
238
238
|
|
|
239
239
|
local spring = self:_getSpringForType(converted)
|
|
240
|
-
spring
|
|
241
|
-
|
|
242
|
-
if isFirst then
|
|
243
|
-
spring.Position = converted
|
|
244
|
-
spring.Velocity = 0*converted
|
|
245
|
-
end
|
|
240
|
+
spring:SetTarget(converted, isFirst)
|
|
241
|
+
isFirst = false
|
|
246
242
|
|
|
247
243
|
self.Changed:Fire()
|
|
248
244
|
end)
|