@quenty/timedtween 7.38.0 → 7.40.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 +14 -0
- package/package.json +10 -10
- package/src/Shared/TimedTween.lua +2 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
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.40.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/timedtween@7.39.0...@quenty/timedtween@7.40.0) (2026-07-23)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- Cleanup code a bit ([fa8c596](https://github.com/Quenty/NevermoreEngine/commit/fa8c596544e45610e180f5ae3797154f35930ccd))
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- Add baseline player-mock and support across Nevermore for mocked players. ([567d121](https://github.com/Quenty/NevermoreEngine/commit/567d121ffc014b42391554088189a1a6296dda83))
|
|
15
|
+
|
|
16
|
+
# [7.39.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/timedtween@7.38.0...@quenty/timedtween@7.39.0) (2026-07-18)
|
|
17
|
+
|
|
18
|
+
**Note:** Version bump only for package @quenty/timedtween
|
|
19
|
+
|
|
6
20
|
# [7.38.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/timedtween@7.37.0...@quenty/timedtween@7.38.0) (2026-07-18)
|
|
7
21
|
|
|
8
22
|
**Note:** Version bump only for package @quenty/timedtween
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/timedtween",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.40.0",
|
|
4
4
|
"description": "Linear timed tweening model",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -28,20 +28,20 @@
|
|
|
28
28
|
"Quenty"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@quenty/basicpane": "13.
|
|
32
|
-
"@quenty/blend": "12.
|
|
31
|
+
"@quenty/basicpane": "13.34.0",
|
|
32
|
+
"@quenty/blend": "12.40.0",
|
|
33
33
|
"@quenty/loader": "10.11.0",
|
|
34
|
-
"@quenty/maid": "3.
|
|
34
|
+
"@quenty/maid": "3.11.0",
|
|
35
35
|
"@quenty/math": "2.7.5",
|
|
36
|
-
"@quenty/promise": "10.
|
|
37
|
-
"@quenty/promisemaid": "5.
|
|
38
|
-
"@quenty/rx": "13.
|
|
36
|
+
"@quenty/promise": "10.21.0",
|
|
37
|
+
"@quenty/promisemaid": "5.21.0",
|
|
38
|
+
"@quenty/rx": "13.31.0",
|
|
39
39
|
"@quenty/signal": "7.13.1",
|
|
40
|
-
"@quenty/steputils": "3.
|
|
41
|
-
"@quenty/valueobject": "13.
|
|
40
|
+
"@quenty/steputils": "3.7.0",
|
|
41
|
+
"@quenty/valueobject": "13.34.0"
|
|
42
42
|
},
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "1de37218a2bedb8e3f8614a2e09bba9eddc812da"
|
|
47
47
|
}
|
|
@@ -7,8 +7,6 @@
|
|
|
7
7
|
|
|
8
8
|
local require = require(script.Parent.loader).load(script)
|
|
9
9
|
|
|
10
|
-
local RunService = game:GetService("RunService")
|
|
11
|
-
|
|
12
10
|
local BasicPane = require("BasicPane")
|
|
13
11
|
local Maid = require("Maid")
|
|
14
12
|
local Math = require("Math")
|
|
@@ -118,7 +116,7 @@ end
|
|
|
118
116
|
@return Observable<number>
|
|
119
117
|
]=]
|
|
120
118
|
function TimedTween.ObserveRenderStepped(self: TimedTween): Observable.Observable<number>
|
|
121
|
-
return self:ObserveOnSignal(
|
|
119
|
+
return self:ObserveOnSignal(StepUtils.getAnimationStepSignal())
|
|
122
120
|
end
|
|
123
121
|
|
|
124
122
|
--[=[
|
|
@@ -151,7 +149,7 @@ end
|
|
|
151
149
|
@return Observable<number>
|
|
152
150
|
]=]
|
|
153
151
|
function TimedTween.Observe(self: TimedTween): Observable.Observable<number>
|
|
154
|
-
return self:
|
|
152
|
+
return self:ObserveRenderStepped()
|
|
155
153
|
end
|
|
156
154
|
|
|
157
155
|
--[=[
|