@quenty/blend 12.5.1-canary.496.cb49bdf.0 → 12.5.1-canary.f162cba.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 CHANGED
@@ -3,12 +3,13 @@
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.5.1-canary.496.cb49bdf.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@12.5.0...@quenty/blend@12.5.1-canary.496.cb49bdf.0) (2024-09-20)
6
+ ## [12.5.1-canary.f162cba.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@12.5.0...@quenty/blend@12.5.1-canary.f162cba.0) (2024-09-22)
7
7
 
8
8
 
9
9
  ### Bug Fixes
10
10
 
11
11
  * SpringObject initializes properly in Blend ([8729989](https://github.com/Quenty/NevermoreEngine/commit/8729989788b482b3a4f0da223e2f2d49c12ff707))
12
+ * SpringObject wouldn't emit a value initially when observing the default spring ([0198add](https://github.com/Quenty/NevermoreEngine/commit/0198add7bf4d124ee70c43466960c99f06b273af))
12
13
 
13
14
 
14
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/blend",
3
- "version": "12.5.1-canary.496.cb49bdf.0",
3
+ "version": "12.5.1-canary.f162cba.0",
4
4
  "description": "Declarative UI system.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -36,7 +36,7 @@
36
36
  "@quenty/promise": "10.4.0",
37
37
  "@quenty/rx": "13.5.0",
38
38
  "@quenty/signal": "7.4.0",
39
- "@quenty/spring": "10.4.0",
39
+ "@quenty/spring": "10.4.1-canary.f162cba.0",
40
40
  "@quenty/steputils": "3.4.0",
41
41
  "@quenty/string": "3.2.0",
42
42
  "@quenty/valuebaseutils": "13.5.0",
@@ -46,5 +46,5 @@
46
46
  "@quenty/contentproviderutils": "12.5.0",
47
47
  "@quenty/playerthumbnailutils": "10.4.0"
48
48
  },
49
- "gitHead": "cb49bdf8d79aac6e6901901c914271148df358b2"
49
+ "gitHead": "f162cba4d1b4a8bba2c99cf22be2a44bdee1b198"
50
50
  }
@@ -53,6 +53,9 @@ function SpringObject.new(target, speed, damper)
53
53
 
54
54
  if target then
55
55
  self:SetTarget(target)
56
+ else
57
+ -- Ensure we initialize at 0 so we can emit a value immediately
58
+ self:SetTarget(0)
56
59
  end
57
60
 
58
61
  if speed then