@quenty/blend 12.3.1-canary.478.34e8ede.0 → 12.4.0-canary.490.601c967.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 +1 -6
- package/package.json +15 -15
- package/src/Shared/Blend/SpringObject.lua +4 -14
package/CHANGELOG.md
CHANGED
|
@@ -3,12 +3,7 @@
|
|
|
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
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
### Bug Fixes
|
|
10
|
-
|
|
11
|
-
* Fix some spring object stuff ([34e8ede](https://github.com/Quenty/NevermoreEngine/commit/34e8edee97fa93a0a5bd84442b85826082444f2a))
|
|
6
|
+
# [12.4.0-canary.490.601c967.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@12.3.0...@quenty/blend@12.4.0-canary.490.601c967.0) (2024-08-27)
|
|
12
7
|
|
|
13
8
|
|
|
14
9
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/blend",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.4.0-canary.490.601c967.0",
|
|
4
4
|
"description": "Declarative UI system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -27,24 +27,24 @@
|
|
|
27
27
|
"access": "public"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@quenty/acceltween": "2.
|
|
31
|
-
"@quenty/brio": "14.
|
|
32
|
-
"@quenty/ducktype": "5.
|
|
33
|
-
"@quenty/instanceutils": "13.
|
|
34
|
-
"@quenty/loader": "10.
|
|
30
|
+
"@quenty/acceltween": "2.5.0-canary.490.601c967.0",
|
|
31
|
+
"@quenty/brio": "14.4.0-canary.490.601c967.0",
|
|
32
|
+
"@quenty/ducktype": "5.4.0-canary.490.601c967.0",
|
|
33
|
+
"@quenty/instanceutils": "13.4.0-canary.490.601c967.0",
|
|
34
|
+
"@quenty/loader": "10.4.0-canary.490.601c967.0",
|
|
35
35
|
"@quenty/maid": "3.2.0",
|
|
36
|
-
"@quenty/promise": "10.
|
|
37
|
-
"@quenty/rx": "13.
|
|
38
|
-
"@quenty/signal": "7.
|
|
39
|
-
"@quenty/spring": "10.
|
|
36
|
+
"@quenty/promise": "10.4.0-canary.490.601c967.0",
|
|
37
|
+
"@quenty/rx": "13.4.0-canary.490.601c967.0",
|
|
38
|
+
"@quenty/signal": "7.4.0-canary.490.601c967.0",
|
|
39
|
+
"@quenty/spring": "10.4.0-canary.490.601c967.0",
|
|
40
40
|
"@quenty/steputils": "3.4.0",
|
|
41
41
|
"@quenty/string": "3.2.0",
|
|
42
|
-
"@quenty/valuebaseutils": "13.
|
|
43
|
-
"@quenty/valueobject": "13.
|
|
42
|
+
"@quenty/valuebaseutils": "13.4.0-canary.490.601c967.0",
|
|
43
|
+
"@quenty/valueobject": "13.4.0-canary.490.601c967.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@quenty/contentproviderutils": "12.
|
|
47
|
-
"@quenty/playerthumbnailutils": "10.
|
|
46
|
+
"@quenty/contentproviderutils": "12.4.0-canary.490.601c967.0",
|
|
47
|
+
"@quenty/playerthumbnailutils": "10.4.0-canary.490.601c967.0"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "601c9671f09638be4f326e41fcfe3343ccfe76d8"
|
|
50
50
|
}
|
|
@@ -45,7 +45,7 @@ function SpringObject.new(target, speed, damper)
|
|
|
45
45
|
self._maid:GiveTask(self.Changed)
|
|
46
46
|
|
|
47
47
|
if target then
|
|
48
|
-
self
|
|
48
|
+
self.Target = target
|
|
49
49
|
else
|
|
50
50
|
self:_getSpringForType(0)
|
|
51
51
|
end
|
|
@@ -287,10 +287,8 @@ function SpringObject:__index(index)
|
|
|
287
287
|
return self._epsilon
|
|
288
288
|
elseif SpringObject[index] then
|
|
289
289
|
return SpringObject[index]
|
|
290
|
-
elseif index == "_currentSpring" then
|
|
291
|
-
return rawget(self, "_currentSpring")
|
|
292
290
|
else
|
|
293
|
-
error(
|
|
291
|
+
error(("%q is not a member of SpringObject"):format(tostring(index)))
|
|
294
292
|
end
|
|
295
293
|
end
|
|
296
294
|
|
|
@@ -325,7 +323,6 @@ function SpringObject:__newindex(index, value)
|
|
|
325
323
|
end)
|
|
326
324
|
elseif index == "Speed" or index == "s" then
|
|
327
325
|
local observable = assert(Blend.toNumberObservable(value), "Invalid speed")
|
|
328
|
-
assert(self._currentSpring, "No self._currentSpring")
|
|
329
326
|
|
|
330
327
|
self._maid._speedSub = observable:Subscribe(function(unconverted)
|
|
331
328
|
assert(type(unconverted) == "number", "Bad damper")
|
|
@@ -340,22 +337,15 @@ function SpringObject:__newindex(index, value)
|
|
|
340
337
|
assert(type(value) == "function", "Bad clock value")
|
|
341
338
|
self._currentSpring.Clock = value
|
|
342
339
|
self.Changed:Fire()
|
|
343
|
-
elseif index == "_currentSpring" then
|
|
344
|
-
rawset(self, "_currentSpring", value)
|
|
345
340
|
else
|
|
346
|
-
error(
|
|
341
|
+
error(("%q is not a member of SpringObject"):format(tostring(index)))
|
|
347
342
|
end
|
|
348
343
|
end
|
|
349
344
|
|
|
350
|
-
function SpringObject:_ensureSpringOrInitSpring()
|
|
351
|
-
|
|
352
|
-
end
|
|
353
|
-
|
|
354
345
|
function SpringObject:_getSpringForType(converted)
|
|
355
346
|
if rawget(self, "_currentSpring") == nil then
|
|
356
347
|
-- only happens on init
|
|
357
|
-
|
|
358
|
-
rawset(self, "_currentSpring", created)
|
|
348
|
+
rawset(self, "_currentSpring", Spring.new(converted))
|
|
359
349
|
return self._currentSpring
|
|
360
350
|
else
|
|
361
351
|
local currentType = typeof(SpringUtils.fromLinearIfNeeded(self._currentSpring.Value))
|