Enlarge battle UI icons
This commit is contained in:
@@ -3,7 +3,7 @@ import Phaser from 'phaser';
|
||||
import battleUiIconsUrl from '../../assets/images/ui/battle-ui-icons.png';
|
||||
|
||||
export const battleUiIconTextureKey = 'battle-ui-icons';
|
||||
export const battleUiIconFrameSize = 48;
|
||||
export const battleUiIconFrameSize = 64;
|
||||
|
||||
export const battleUiIconFrames = {
|
||||
hp: 0,
|
||||
@@ -27,7 +27,11 @@ export const battleUiIconFrames = {
|
||||
terrain: 18,
|
||||
counter: 19,
|
||||
advantage: 20,
|
||||
success: 21
|
||||
success: 21,
|
||||
heal: 22,
|
||||
focus: 23,
|
||||
fire: 24,
|
||||
shout: 25
|
||||
} as const;
|
||||
|
||||
export type BattleUiIconKey = keyof typeof battleUiIconFrames;
|
||||
@@ -38,7 +42,7 @@ export const battleUiIconManifest = {
|
||||
frameWidth: battleUiIconFrameSize,
|
||||
frameHeight: battleUiIconFrameSize,
|
||||
columns: 5,
|
||||
rows: 5,
|
||||
rows: 6,
|
||||
frames: battleUiIconFrames
|
||||
} as const;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user