mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +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 timeout: Int? = null
|
||||||
private var invokeOnTimeout = false
|
private var invokeOnTimeout = false
|
||||||
|
private var function: () -> Unit = {}
|
||||||
|
|
||||||
operator fun invoke(f: () -> Unit) {
|
operator fun invoke(f: () -> Unit) {
|
||||||
|
function = f
|
||||||
|
|
||||||
if (timeout == null) {
|
if (timeout == null) {
|
||||||
if (leading) {
|
if (leading) {
|
||||||
f()
|
function()
|
||||||
|
} else if (trailing) {
|
||||||
|
invokeOnTimeout = true
|
||||||
}
|
}
|
||||||
|
|
||||||
timeout = self.setTimeout({
|
timeout = self.setTimeout({
|
||||||
if (invokeOnTimeout) {
|
if (invokeOnTimeout) {
|
||||||
f()
|
function()
|
||||||
}
|
}
|
||||||
|
|
||||||
timeout = null
|
timeout = null
|
||||||
|
Loading…
Reference in New Issue
Block a user