@quenty/steputils 3.5.2 → 3.5.3-canary.542.7609692.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 +8 -0
- package/package.json +2 -2
- package/src/Shared/StepUtils.lua +3 -3
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-canary.542.7609692.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/steputils@3.5.2...@quenty/steputils@3.5.3-canary.542.7609692.0) (2025-03-13)
|
|
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.
|
|
3
|
+
"version": "3.5.3-canary.542.7609692.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": "
|
|
30
|
+
"gitHead": "76096921c6c965e5c4f9c796f97642d16d628c6b"
|
|
31
31
|
}
|
package/src/Shared/StepUtils.lua
CHANGED
|
@@ -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
|