15 lines
359 B
Kotlin
15 lines
359 B
Kotlin
import org.openrndr.application
|
|
import org.openrndr.color.ColorRGBa
|
|
import org.openrndr.extra.videoprofiles.GIFProfile
|
|
import org.openrndr.ffmpeg.ScreenRecorder
|
|
|
|
fun main() = application {
|
|
program {
|
|
extend(ScreenRecorder()) {
|
|
profile = GIFProfile()
|
|
}
|
|
extend {
|
|
drawer.clear(ColorRGBa.GREEN)
|
|
}
|
|
}
|
|
} |