Files
orx/orx-jvm/orx-video-profiles/src/demo/kotlin/DemoGIF01.kt
2024-06-24 10:02:34 +02:00

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)
}
}
}