mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 06:28:28 +08:00
Fixed two bugs in Throttle.
This commit is contained in:
parent
1923be4b3f
commit
12883de487
@ -16,16 +16,21 @@ class Throttle(
|
||||
) {
|
||||
private var timeout: Int? = null
|
||||
private var invokeOnTimeout = false
|
||||
private var function: () -> Unit = {}
|
||||
|
||||
operator fun invoke(f: () -> Unit) {
|
||||
function = f
|
||||
|
||||
if (timeout == null) {
|
||||
if (leading) {
|
||||
f()
|
||||
function()
|
||||
} else if (trailing) {
|
||||
invokeOnTimeout = true
|
||||
}
|
||||
|
||||
timeout = self.setTimeout({
|
||||
if (invokeOnTimeout) {
|
||||
f()
|
||||
function()
|
||||
}
|
||||
|
||||
timeout = null
|
||||
|
Loading…
Reference in New Issue
Block a user