@quenty/timedtween 7.18.2-canary.547.ba47c62.0 → 7.18.3-canary.550.afa1b3b.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 +9 -1
- package/LICENSE.md +1 -1
- package/package.json +12 -12
- package/src/Shared/TimedTween.lua +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,15 @@
|
|
|
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.18.
|
|
6
|
+
## [7.18.3-canary.550.afa1b3b.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/timedtween@7.18.2...@quenty/timedtween@7.18.3-canary.550.afa1b3b.0) (2025-04-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/timedtween
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [7.18.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/timedtween@7.18.0...@quenty/timedtween@7.18.2) (2025-04-07)
|
|
7
15
|
|
|
8
16
|
|
|
9
17
|
### Bug Fixes
|
package/LICENSE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2014-
|
|
3
|
+
Copyright (c) 2014-2025 James Onnen (Quenty)
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/timedtween",
|
|
3
|
-
"version": "7.18.
|
|
3
|
+
"version": "7.18.3-canary.550.afa1b3b.0",
|
|
4
4
|
"description": "Linear timed tweening model",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,19 +25,19 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/basicpane": "13.17.
|
|
29
|
-
"@quenty/blend": "12.18.
|
|
30
|
-
"@quenty/loader": "10.8.
|
|
31
|
-
"@quenty/maid": "3.4.
|
|
32
|
-
"@quenty/math": "2.7.3
|
|
33
|
-
"@quenty/promise": "10.10.
|
|
34
|
-
"@quenty/promisemaid": "5.10.
|
|
35
|
-
"@quenty/rx": "13.17.
|
|
36
|
-
"@quenty/steputils": "3.5.5
|
|
37
|
-
"@quenty/valueobject": "13.17.
|
|
28
|
+
"@quenty/basicpane": "13.17.3-canary.550.afa1b3b.0",
|
|
29
|
+
"@quenty/blend": "12.18.3-canary.550.afa1b3b.0",
|
|
30
|
+
"@quenty/loader": "10.8.3-canary.550.afa1b3b.0",
|
|
31
|
+
"@quenty/maid": "3.4.3-canary.550.afa1b3b.0",
|
|
32
|
+
"@quenty/math": "2.7.3",
|
|
33
|
+
"@quenty/promise": "10.10.4-canary.550.afa1b3b.0",
|
|
34
|
+
"@quenty/promisemaid": "5.10.4-canary.550.afa1b3b.0",
|
|
35
|
+
"@quenty/rx": "13.17.3-canary.550.afa1b3b.0",
|
|
36
|
+
"@quenty/steputils": "3.5.5",
|
|
37
|
+
"@quenty/valueobject": "13.17.3-canary.550.afa1b3b.0"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "afa1b3b99b862698c3ab46009497bd507150867c"
|
|
43
43
|
}
|
|
@@ -37,7 +37,6 @@ type ComputedState = {
|
|
|
37
37
|
|
|
38
38
|
export type TimedTween = typeof(setmetatable(
|
|
39
39
|
{} :: {
|
|
40
|
-
_maid: Maid.Maid,
|
|
41
40
|
_state: ValueObject.ValueObject<TimedTweenState>,
|
|
42
41
|
_transitionTime: ValueObject.ValueObject<number>,
|
|
43
42
|
|
|
@@ -47,8 +46,8 @@ export type TimedTween = typeof(setmetatable(
|
|
|
47
46
|
VisibleChanged: _Signal.Signal<boolean, boolean>,
|
|
48
47
|
Destroy: (self: TimedTween) -> (),
|
|
49
48
|
},
|
|
50
|
-
{ __index = TimedTween }
|
|
51
|
-
))
|
|
49
|
+
{} :: typeof({ __index = TimedTween })
|
|
50
|
+
)) & BasicPane.BasicPane
|
|
52
51
|
|
|
53
52
|
--[=[
|
|
54
53
|
Timed transition module
|
|
@@ -180,14 +179,14 @@ function TimedTween.PromiseFinished(self: TimedTween): Promise.Promise<()>
|
|
|
180
179
|
end)
|
|
181
180
|
end))
|
|
182
181
|
|
|
183
|
-
self._maid[promise
|
|
182
|
+
self._maid[promise] = maid
|
|
184
183
|
|
|
185
184
|
promise:Finally(function()
|
|
186
|
-
self._maid[promise
|
|
185
|
+
self._maid[promise] = nil
|
|
187
186
|
end)
|
|
188
187
|
|
|
189
188
|
maid:GiveTask(function()
|
|
190
|
-
self._maid[promise
|
|
189
|
+
self._maid[promise] = nil
|
|
191
190
|
end)
|
|
192
191
|
return promise
|
|
193
192
|
end
|