Skip to content
Snippets Groups Projects
Commit cd655582 authored by Vitaliy Vashchenko's avatar Vitaliy Vashchenko
Browse files

#150 Animation duration decreased. Scene clear after game ends.

parent 02d0436b
Branches feature-crimescene-translations
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@ import com.badlogic.gdx.scenes.scene2d.InputEvent;
import com.badlogic.gdx.scenes.scene2d.InputListener;
import com.badlogic.gdx.scenes.scene2d.Touchable;
import com.badlogic.gdx.scenes.scene2d.actions.Actions;
import com.badlogic.gdx.scenes.scene2d.actions.ColorAction;
import com.badlogic.gdx.scenes.scene2d.ui.Image;
import com.badlogic.gdx.scenes.scene2d.ui.Label;
import com.badlogic.gdx.scenes.scene2d.ui.Table;
......@@ -154,7 +155,10 @@ public class ShootingRangeGame extends AbstractTablexiaGame<GameState> {
}
} else {
sfxLibrary.getSound(SoundType.WRONG).play();
target.addAction(Actions.sequence(Actions.color(Color.RED,0.1f),Actions.color(target.getColor(),0.1f),Actions.color(Color.RED,0.1f),Actions.color(target.getColor(),0.1f),Actions.color(Color.RED,0.1f),Actions.color(target.getColor(),0.1f)));
target.clearActions();
ColorAction colorAction = Actions.color(new Color(Color.RED),0.02f);
ColorAction resetColor = Actions.color(target.getColor(),0.02f);
target.addAction(Actions.sequence(colorAction, resetColor, colorAction, resetColor, colorAction, resetColor));
getData().addWrongTarget();
setGameScore(Properties.SCORE_ERRORS, getData().getWrongTargets());
}
......@@ -310,6 +314,12 @@ public class ShootingRangeGame extends AbstractTablexiaGame<GameState> {
gameComplete();
}
@Override
protected void gameEnd() {
getStage().clear();
super.gameEnd();
}
/**
* Create scene with watch, carousel and background
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment