Merging Source v1.7.2: UI changes

This commit is contained in:
Evan Debenham
2014-10-18 21:30:38 -04:00
parent 9f9e117c95
commit 735af276c8
7 changed files with 347 additions and 206 deletions
@@ -48,7 +48,10 @@ public enum Icons {
SCROLL_HOLDER,
WAND_HOLSTER,
CHECKED,
UNCHECKED;
UNCHECKED,
EXIT,
CHALLENGE_OFF,
CHALLENGE_ON;
public Image get() {
return get( this );
@@ -135,6 +138,15 @@ public enum Icons {
case UNCHECKED:
icon.frame( icon.texture.uvRect( 66, 12, 78, 24 ) );
break;
case EXIT:
icon.frame( icon.texture.uvRect( 98, 0, 114, 16 ) );
break;
case CHALLENGE_OFF:
icon.frame( icon.texture.uvRect( 78, 16, 102, 40 ) );
break;
case CHALLENGE_ON:
icon.frame( icon.texture.uvRect( 102, 16, 126, 40 ) );
break;
}
return icon;
}