Feature variants (#376)
Migrate from buildSrc to build-logic. Setup feature variants.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
plugins {
|
||||
org.openrndr.extra.convention.`kotlin-multiplatform`
|
||||
id("org.openrndr.extra.convention.kotlin-multiplatform")
|
||||
alias(libs.plugins.kotest.multiplatform)
|
||||
}
|
||||
|
||||
|
||||
18
orx-noise/src/jvmDemo/kotlin/DemoBla.kt
Normal file
18
orx-noise/src/jvmDemo/kotlin/DemoBla.kt
Normal file
@@ -0,0 +1,18 @@
|
||||
import org.openrndr.application
|
||||
import org.openrndr.extra.noise.fbm
|
||||
import org.openrndr.extra.noise.perlin2D
|
||||
|
||||
fun main() {
|
||||
application {
|
||||
configure {
|
||||
width = 1280
|
||||
height = 720
|
||||
}
|
||||
program {
|
||||
extend {
|
||||
perlin2D.fbm()
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user