Merge remote-tracking branch 'origin/master'

This commit is contained in:
Anuken
2018-07-17 19:19:55 -04:00
5 changed files with 2 additions and 11 deletions

View File

@@ -33,10 +33,5 @@ public abstract class Decal extends TimedEntity implements BelowLiquidTrait, Dra
return groundEffectGroup; return groundEffectGroup;
} }
@Override
public float fin() {
return time / lifetime();
}
abstract void drawDecal(); abstract void drawDecal();
} }

View File

@@ -134,9 +134,4 @@ public class ItemTransfer extends TimedEntity implements DrawTrait{
public EntityGroup targetGroup(){ public EntityGroup targetGroup(){
return effectGroup; return effectGroup;
} }
@Override
public float fin(){
return time() / lifetime();
}
} }

Binary file not shown.

View File

@@ -2,5 +2,5 @@ app.version=4.0
app.id=io.anuke.mindustry app.id=io.anuke.mindustry
app.mainclass=io.anuke.mindustry.IOSLauncher app.mainclass=io.anuke.mindustry.IOSLauncher
app.executable=IOSLauncher app.executable=IOSLauncher
app.build=14 app.build=17
app.name=Mindustry app.name=Mindustry

View File

@@ -26,6 +26,7 @@ public class TextFieldDialogListener {
}); });
} }
@SuppressWarnings("deprecation")
private static void show(TextField field, int maxLength){ private static void show(TextField field, int maxLength){
UIAlertViewDelegateAdapter delegate = new UIAlertViewDelegateAdapter() { UIAlertViewDelegateAdapter delegate = new UIAlertViewDelegateAdapter() {