com.soywiz.korge.ext.lipsync.LipsyncPlugin.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of korge-ext-lipsync Show documentation
Show all versions of korge-ext-lipsync Show documentation
Korge: Kotlin cORoutines Game Engine
package com.soywiz.korge.ext.lipsync
import com.soywiz.korge.plugin.KorgePlugin
import com.soywiz.korge.view.Views
class LipsyncPlugin : KorgePlugin() {
suspend override fun register(views: Views) {
println("LipsyncPlugin.register()")
views.registerPropertyTrigger("lipsync") { view, key, value ->
view.addComponent(LipSyncComponent(view))
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy