@quenty/steputils 3.5.2 → 3.5.3

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.5.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/steputils@3.5.2...@quenty/steputils@3.5.3) (2025-03-21)
7
+
8
+ **Note:** Version bump only for package @quenty/steputils
9
+
10
+
11
+
12
+
13
+
6
14
  ## [3.5.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/steputils@3.5.1...@quenty/steputils@3.5.2) (2024-10-09)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/steputils",
3
- "version": "3.5.2",
3
+ "version": "3.5.3",
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": "b23f80e41579da8313b95ba0a5ebf5295e062b4b"
30
+ "gitHead": "6b7c3e15e60cdb185986207b574e2b5591261e7a"
31
31
  }
@@ -106,7 +106,7 @@ function StepUtils.bindToSignal(signal, update)
106
106
  end
107
107
 
108
108
  -- Usually contains just the self arg!
109
- local args = {...}
109
+ local args = { ... }
110
110
 
111
111
  -- Bind to render stepped
112
112
  conn = signal:Connect(function()
@@ -127,7 +127,7 @@ end
127
127
  @param func function -- Function to call
128
128
  @return function -- Call this function to cancel call
129
129
  ]=]
130
- function StepUtils.onceAtRenderPriority(priority, func)
130
+ function StepUtils.onceAtRenderPriority(priority: number, func)
131
131
  assert(type(priority) == "number", "Bad priority")
132
132
  assert(type(func) == "function", "Bad func")
133
133
 
@@ -215,4 +215,4 @@ function StepUtils.onceAtEvent(event, func)
215
215
  return cleanup
216
216
  end
217
217
 
218
- return StepUtils
218
+ return StepUtils