All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.soywiz.korge.ext.lipsync.LipsyncPlugin.kt Maven / Gradle / Ivy

There is a newer version: 0.19.2
Show newest version
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