@quenty/timedtween 7.39.0 → 7.40.1

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,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.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/timedtween@7.40.0...@quenty/timedtween@7.40.1) (2026-07-23)
7
+
8
+ **Note:** Version bump only for package @quenty/timedtween
9
+
10
+ # [7.40.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/timedtween@7.39.0...@quenty/timedtween@7.40.0) (2026-07-23)
11
+
12
+ ### Bug Fixes
13
+
14
+ - Cleanup code a bit ([fa8c596](https://github.com/Quenty/NevermoreEngine/commit/fa8c596544e45610e180f5ae3797154f35930ccd))
15
+
16
+ ### Features
17
+
18
+ - Add baseline player-mock and support across Nevermore for mocked players. ([567d121](https://github.com/Quenty/NevermoreEngine/commit/567d121ffc014b42391554088189a1a6296dda83))
19
+
6
20
  # [7.39.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/timedtween@7.38.0...@quenty/timedtween@7.39.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.39.0",
3
+ "version": "7.40.1",
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.33.0",
32
- "@quenty/blend": "12.39.0",
31
+ "@quenty/basicpane": "13.34.0",
32
+ "@quenty/blend": "12.40.1",
33
33
  "@quenty/loader": "10.11.0",
34
- "@quenty/maid": "3.10.0",
34
+ "@quenty/maid": "3.11.0",
35
35
  "@quenty/math": "2.7.5",
36
- "@quenty/promise": "10.20.0",
37
- "@quenty/promisemaid": "5.20.0",
38
- "@quenty/rx": "13.30.0",
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.6.3",
41
- "@quenty/valueobject": "13.33.0"
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": "647acfad93dca41c38f59cda247d2bfc0fff36d4"
46
+ "gitHead": "5ea0583dedebba6492f9ac6d719d32b45c5543fa"
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(RunService.RenderStepped)
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:ObserveOnSignal(RunService.RenderStepped)
152
+ return self:ObserveRenderStepped()
155
153
  end
156
154
 
157
155
  --[=[