@quenty/steputils 3.6.0 → 3.6.1-canary.90de6eb.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,6 +3,14 @@
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
+ ## [3.6.1-canary.90de6eb.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/steputils@3.6.0...@quenty/steputils@3.6.1-canary.90de6eb.0) (2026-01-03)
7
+
8
+ **Note:** Version bump only for package @quenty/steputils
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.6.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/steputils@3.5.5...@quenty/steputils@3.6.0) (2025-05-10)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/steputils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/steputils",
3
- "version": "3.6.0",
3
+ "version": "3.6.1-canary.90de6eb.0",
4
4
  "description": "Binds animations into step, where the animation only runs as needed",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,5 +27,5 @@
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
- "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
30
+ "gitHead": "90de6ebb6e0cb5e6798e08b312cb1864c1d3354c"
31
31
  }
@@ -36,7 +36,7 @@ local StepUtils = {}
36
36
  @return (...) -> () -- Connect function
37
37
  @return () -> () -- Disconnect function
38
38
  ]=]
39
- function StepUtils.bindToRenderStep(update: () -> boolean): () -> ()
39
+ function StepUtils.bindToRenderStep(update: () -> boolean): (() -> (), () -> ())
40
40
  return StepUtils.bindToSignal(RunService.RenderStepped, update)
41
41
  end
42
42
 
@@ -61,7 +61,7 @@ end
61
61
  @return (...) -> () -- Connect function
62
62
  @return () -> () -- Disconnect function
63
63
  ]=]
64
- function StepUtils.bindToStepped(update: () -> boolean): () -> ()
64
+ function StepUtils.bindToStepped(update: () -> boolean): (() -> (), () -> ())
65
65
  return StepUtils.bindToSignal(RunService.Stepped, update)
66
66
  end
67
67