-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added assetmanager usage, loading and splash screens, waiting time du…
…ring introduction and before kickoff
- Loading branch information
Showing
26 changed files
with
326 additions
and
103 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
package com.senegas.kickoff.pitches; | ||
|
||
import com.senegas.kickoff.KickOff; | ||
|
||
public class ArtificialPitch extends Pitch { | ||
|
||
public ArtificialPitch() { | ||
super("pitches/synthetic.tmx", 0.975f ); | ||
public ArtificialPitch(KickOff app) { | ||
super(app, "pitches/synthetic.tmx", 0.975f); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
package com.senegas.kickoff.pitches; | ||
|
||
import com.senegas.kickoff.KickOff; | ||
|
||
public class ClassicPitch extends Pitch { | ||
|
||
public ClassicPitch() { | ||
super("pitches/classic.tmx", 0.975f ); | ||
public ClassicPitch(KickOff app) { | ||
super(app, "pitches/classic.tmx", 0.975f); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
package com.senegas.kickoff.pitches; | ||
|
||
import com.senegas.kickoff.KickOff; | ||
|
||
public class PlayerManagerPitch extends Pitch { | ||
|
||
public PlayerManagerPitch() { | ||
super("pitches/playermanager.tmx", 0.975f ); | ||
public PlayerManagerPitch(KickOff app) { | ||
super(app, "pitches/playermanager.tmx", 0.975f); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
package com.senegas.kickoff.pitches; | ||
|
||
import com.senegas.kickoff.KickOff; | ||
|
||
public class SoggyPitch extends Pitch { | ||
public SoggyPitch() { | ||
super("pitches/soggy.tmx", 1.125f ); | ||
|
||
public SoggyPitch(KickOff app) { | ||
super(app, "pitches/soggy.tmx", 1.125f); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
package com.senegas.kickoff.pitches; | ||
|
||
import com.senegas.kickoff.KickOff; | ||
|
||
public class WetPitch extends Pitch { | ||
|
||
public WetPitch() { | ||
super("pitches/wet.tmx", 0.775f ); | ||
public WetPitch(KickOff app) { | ||
super(app, "pitches/wet.tmx", 0.775f); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.