[orx-color] Add color presets

This commit is contained in:
Edwin Jakobs
2020-08-18 19:13:05 +02:00
parent f331100f5a
commit c76e2148e0
3 changed files with 160 additions and 0 deletions

17
orx-color/build.gradle Normal file
View File

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