Skip to content

Commit c474985

Browse files
committedJun 23, 2018
Merge remote-tracking branch 'origin/master'
2 parents fc45df3 + a5d95a9 commit c474985

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed
 
Binary file not shown.
Loading
Loading
Loading

‎DropicalClient/core/src/com/dropical/client/world/Background.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,17 @@ private void createBeachAnimation() {
5454
beachTexture = new Texture("GUI/background_beachAni.png");
5555

5656
TextureRegion[][] beachTmpFrames = TextureRegion.split(beachTexture, 208, 5);
57-
beachAnimationFrames = new TextureRegion[4];
57+
beachAnimationFrames = new TextureRegion[13];
5858
int index = 0;
5959
//Animation vorwärts in Array speichern
60-
for(int i = 0; i < 4; i++) {
60+
for(int i = 0; i < 13; i++) {
6161
for(int j = 0; j < 1; j++) {
6262
beachAnimationFrames[index++] = beachTmpFrames[i][j];
6363
}
6464
}
6565
beachAnimation = new DropicalAnimation<TextureRegion>(1f/8f, beachAnimationFrames);
6666
beachAnimation.setScaling(4);
67-
beachAnimation.setPlayMode(Animation.PlayMode.LOOP_PINGPONG);
67+
beachAnimation.setPlayMode(Animation.PlayMode.LOOP);
6868
}
6969

7070
//----------------------------------------

0 commit comments

Comments
 (0)