Merging 1.7.5 Source: effect changes

This commit is contained in:
Evan Debenham
2015-01-29 16:05:19 -05:00
parent 1b10338b37
commit d6bcece8af
15 changed files with 355 additions and 24 deletions
@@ -26,7 +26,8 @@ public class BannerSprites {
PIXEL_DUNGEON,
BOSS_SLAIN,
GAME_OVER,
SELECT_YOUR_HERO
SELECT_YOUR_HERO,
PIXEL_DUNGEON_SIGNS
};
public static Image get( Type type ) {
@@ -44,6 +45,9 @@ public class BannerSprites {
case SELECT_YOUR_HERO:
icon.frame( icon.texture.uvRect( 0, 140, 128, 161 ) );
break;
case PIXEL_DUNGEON_SIGNS:
icon.frame( icon.texture.uvRect( 0, 161, 128, 218 ) );
break;
}
return icon;
}