com.primogemstudio.advancedfmk.kui.animation.TimedEvent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of advancedfmk-uicompositor Show documentation
Show all versions of advancedfmk-uicompositor Show documentation
UI parser & renderer for Advanced Framework
The newest version!
package com.primogemstudio.advancedfmk.kui.animation
class TimedEvent(val interval: Long, override val updateFunc: () -> Unit): CustomAnimationEvent(updateFunc) {
private var ts = System.currentTimeMillis()
override fun update() {
if (System.currentTimeMillis() - ts >= interval) {
super.update()
ts = System.currentTimeMillis()
}
}
}