Add skeleton filters to orx-jumpflood

This commit is contained in:
Edwin Jakobs
2020-04-21 11:44:59 +02:00
parent e660484c4d
commit dafd309924
14 changed files with 418 additions and 33 deletions

View File

@@ -1,3 +1,18 @@
sourceSets {
demo {
java {
srcDirs = ["src/demo/kotlin"]
compileClasspath += main.getCompileClasspath()
runtimeClasspath += main.getRuntimeClasspath()
}
}
}
dependencies {
implementation project(":orx-fx")
demoImplementation project(":orx-noise")
demoImplementation("org.openrndr:openrndr-core:$openrndrVersion")
demoRuntimeOnly("org.openrndr:openrndr-gl3:$openrndrVersion")
demoRuntimeOnly("org.openrndr:openrndr-gl3-natives-$openrndrOS:$openrndrVersion")
demoImplementation(sourceSets.getByName("main").output)
}