mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-18 03:37:44 +07:00
Various icon changes
This commit is contained in:
@ -353,3 +353,10 @@ task updateBundles(dependsOn: classes, type: JavaExec){
|
||||
standardInput = System.in
|
||||
workingDir = "../core/assets/bundles/"
|
||||
}
|
||||
|
||||
task fontgen(dependsOn: classes, type: JavaExec){
|
||||
main = "mindustry.tools.FontGenerator"
|
||||
classpath = sourceSets.main.runtimeClasspath
|
||||
standardInput = System.in
|
||||
workingDir = "../"
|
||||
}
|
||||
|
@ -42,6 +42,7 @@ public class FontGenerator{
|
||||
ZipFi zip = new ZipFi(folder.child("font.zip"));
|
||||
Fi dest = folder.child("font.ttf");
|
||||
zip.list()[0].child("font").child("fontello.ttf").copyTo(dest);
|
||||
dest.copyTo(Fi.get("core/assets/fonts/icon.ttf"));
|
||||
|
||||
Log.info("Merge...");
|
||||
|
||||
|
Reference in New Issue
Block a user