Change build upload formatting
This commit is contained in:
+3
-1
@@ -9,7 +9,6 @@ buildscript {
|
|||||||
dependencies {
|
dependencies {
|
||||||
classpath 'de.richsource.gradle.plugins:gwt-gradle-plugin:0.6'
|
classpath 'de.richsource.gradle.plugins:gwt-gradle-plugin:0.6'
|
||||||
classpath 'com.android.tools.build:gradle:3.0.1'
|
classpath 'com.android.tools.build:gradle:3.0.1'
|
||||||
//classpath 'org.akhikhl.gretty:gretty:+'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -86,6 +85,9 @@ project(":core") {
|
|||||||
}else{
|
}else{
|
||||||
compile "com.github.anuken:ucore:$uCoreVersion"
|
compile "com.github.anuken:ucore:$uCoreVersion"
|
||||||
}
|
}
|
||||||
|
if(new File('../GDXGifRecorder').exists()) {
|
||||||
|
compile project(":GDXGifRecorder")
|
||||||
|
}
|
||||||
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
|
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
|
||||||
compile "com.badlogicgames.gdx:gdx-ai:$aiVersion"
|
compile "com.badlogicgames.gdx:gdx-ai:$aiVersion"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ import io.anuke.ucore.util.Mathf;
|
|||||||
import io.anuke.ucore.util.Tmp;
|
import io.anuke.ucore.util.Tmp;
|
||||||
|
|
||||||
public class Pathfind{
|
public class Pathfind{
|
||||||
private static final long ms = 1000000 * 3;
|
private static final long ms = 1000000 * 5;
|
||||||
|
|
||||||
MHueristic heuristic = new MHueristic();
|
MHueristic heuristic = new MHueristic();
|
||||||
PassTileGraph graph = new PassTileGraph();
|
PassTileGraph graph = new PassTileGraph();
|
||||||
|
|||||||
@@ -324,7 +324,7 @@ public class Renderer extends RendererModule{
|
|||||||
void drawOverlay(){
|
void drawOverlay(){
|
||||||
|
|
||||||
//draw tutorial placement point
|
//draw tutorial placement point
|
||||||
if(Vars.control.tutorial.showBlock()){
|
if(Vars.world.getMap().name.equals("tutorial") && Vars.control.tutorial.showBlock()){
|
||||||
int x = control.core.x + Vars.control.tutorial.getPlacePoint().x;
|
int x = control.core.x + Vars.control.tutorial.getPlacePoint().x;
|
||||||
int y = control.core.y + Vars.control.tutorial.getPlacePoint().y;
|
int y = control.core.y + Vars.control.tutorial.getPlacePoint().y;
|
||||||
int rot = Vars.control.tutorial.getPlaceRotation();
|
int rot = Vars.control.tutorial.getPlaceRotation();
|
||||||
|
|||||||
@@ -4,3 +4,8 @@ if (new File(settingsDir, '../uCore').exists()) {
|
|||||||
include ':uCore'
|
include ':uCore'
|
||||||
project(':uCore').projectDir = new File(settingsDir, '../uCore')
|
project(':uCore').projectDir = new File(settingsDir, '../uCore')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (new File(settingsDir, '../GDXGifRecorder').exists()) {
|
||||||
|
include ':GDXGifRecorder'
|
||||||
|
project(':GDXGifRecorder').projectDir = new File(settingsDir, '../GDXGifRecorder')
|
||||||
|
}
|
||||||
|
|||||||
+2
-1
@@ -17,7 +17,8 @@ if [ ! -e $FILE1 ]; then
|
|||||||
touch $FILE1
|
touch $FILE1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "This is the latest build of #"$TRAVIS_COMMIT" >>Desktop download: ["$DESKFILE"]("$DESKFILE")" >> $FILE1
|
MSG=$"### Travis build #"$TRAVIS_BUILD_NUMBER".\n####Desktop JAR download: ["$DESKFILE"]("$DESKFILE")" >> $FILE1
|
||||||
|
echo "$MSG"
|
||||||
|
|
||||||
git add $FILE1
|
git add $FILE1
|
||||||
git add $DESKFILE
|
git add $DESKFILE
|
||||||
|
|||||||
Reference in New Issue
Block a user