Bump to OPENRNDR 0.3.44-rc.2

This commit is contained in:
Edwin Jakobs
2020-07-13 11:45:13 +02:00
parent 5223ee0035
commit 62f6cd6098
33 changed files with 843 additions and 21 deletions

View File

@@ -1,5 +1,3 @@
@file:ShaderPhrases([])
import kotlinx.coroutines.yield
import org.openrndr.*
import org.openrndr.color.ColorRGBa
@@ -39,9 +37,7 @@ fun main() = application {
}
program {
extend(ScreenRecorder()) {
multisample = BufferMultisample.SampleCount(8)
}
if (System.getProperty("takeScreenshot") == "true") {
extend(SingleScreenshot()) {
this.outputFile = System.getProperty("screenshotPath")
@@ -113,6 +109,7 @@ fun main() = application {
drawer.clear(ColorRGBa.BLACK)
renderer.draw(drawer, scene)
drawer.defaults()
}
}
}