Fix easing functions in orx-easing, add demo

This commit is contained in:
Edwin Jakobs
2020-04-07 23:52:28 +02:00
parent b3fd0a0068
commit 32d0b98338
3 changed files with 163 additions and 44 deletions

20
orx-easing/build.gradle Normal file
View File

@@ -0,0 +1,20 @@
sourceSets {
demo {
java {
srcDirs = ["src/demo/kotlin"]
compileClasspath += main.getCompileClasspath()
runtimeClasspath += main.getRuntimeClasspath()
}
}
}
dependencies {
implementation project(":orx-shader-phrases")
implementation project(":orx-parameters")
demoImplementation(project(":orx-camera"))
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)
}