Skip to content

Commit

Permalink
Standardfarbe für Szenen
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCodez committed Feb 19, 2015
1 parent a6f3fcc commit 72b5c4b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
Binary file added libs/android-support-v4.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/ea/Szene.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public class Szene extends Raum
{
public Knoten wurzel;
private Farbe hintergrundFarbe;
private Farbe hintergrundFarbe = Farbe.Schwarz;

private GameSzenenActivity game;

Expand Down
9 changes: 2 additions & 7 deletions src/ea/internal/gra/Zeichner.java
Original file line number Diff line number Diff line change
Expand Up @@ -162,14 +162,9 @@ else if(getContext() instanceof GameSzenenActivity)

if(gsa.szeneGeben() != null)
{
if(gsa.szeneGeben().hintergrundFarbeGeben() != null)
{
g.drawColor(gsa.szeneGeben().hintergrundFarbeGeben().alsInt());
}
g.drawColor(gsa.szeneGeben().hintergrundFarbeGeben().alsInt());
}
}


}

if(cam != null)
cam.zeichne(g);
Expand Down

0 comments on commit 72b5c4b

Please sign in to comment.