-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
410 additions
and
0 deletions.
There are no files selected for viewing
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
16 changes: 16 additions & 0 deletions
16
packages/filterscript/src/scripts/skin_changer/constants/index.ts
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
export const TOTAL_ITEMS = 312; | ||
export const SELECTION_ITEMS = 21; | ||
export const ITEMS_PER_LINE = 7; | ||
|
||
export const HEADER_TEXT = "Skins"; | ||
export const NEXT_TEXT = "Next"; | ||
export const PREV_TEXT = "Prev"; | ||
|
||
export const DIALOG_BASE_X = 75.0; | ||
export const DIALOG_BASE_Y = 130.0; | ||
export const DIALOG_WIDTH = 550.0; | ||
export const DIALOG_HEIGHT = 180.0; | ||
export const SPRITE_DIM_X = 60.0; | ||
export const SPRITE_DIM_Y = 70.0; | ||
|
||
export const gItemList = Array.from({ length: TOTAL_ITEMS }).map((_, i) => i); |
Oops, something went wrong.