summaryrefslogtreecommitdiffstats
path: root/assets/build.gradle
blob: cf35be13ac234293baa828736b1911fade2742ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
configurations {
    texturePacker
}

dependencies {
    texturePacker "com.badlogicgames.gdx:gdx-tools:$gdxVersion"
}

defaultTasks 'generateAssets'

task packLoading(type: JavaExec) {
    main = 'com.badlogic.gdx.tools.texturepacker.TexturePacker'
    classpath = configurations.texturePacker
    args = ['loading', 'data', 'loading']
}

task packHexOverlays(type: JavaExec) {
    main = 'com.badlogic.gdx.tools.texturepacker.TexturePacker'
    classpath = configurations.texturePacker
    args = ['hex-overlays', 'data', 'hex-overlays']
}

task generateAssets() {
    description "Builds the skin at various DPIs"
}

generateAssets.dependsOn {
    tasks.findAll { task -> task.name.startsWith('pack') }
}