修复了模式为 ONCE 的聊天气泡会在进入玩家可视范围内的时播放一次的问题。

This commit is contained in:
BERADQ 2024-11-06 23:20:21 +08:00
parent 03137e6115
commit a8a7a8fb8b
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
group=io.github.beradq.adybubbles
version=2.5.0-SNAPSHOT
version=2.5.1
kotlin.incremental=true
kotlin.incremental.java=true
kotlin.caching.enabled=true

View File

@ -1,7 +1,7 @@
package io.github.beradq.adybubbles
class Bubbles(val items: MutableList<String>, val config: BubbleConfig) : Cloneable {
private val state = BubbleState(0)
private val state = BubbleState(0, if (config.mode == ChatPopupMode.ONCE) -1L else 0)
private var restDelay = config.restDelayRange.random()
private var period = config.period.random()
@ -20,7 +20,7 @@ class Bubbles(val items: MutableList<String>, val config: BubbleConfig) : Clonea
data class BubbleState(
var index: Int,
var timeCount: Long = 0
var timeCount: Long
) : Cloneable
fun next(): String? {