Skip to content

Commit

Permalink
feat(fs): o_spawner
Browse files Browse the repository at this point in the history
  • Loading branch information
dockfries committed Jul 20, 2024
1 parent 979dbac commit b84c1f1
Show file tree
Hide file tree
Showing 5 changed files with 471 additions and 10 deletions.
1 change: 1 addition & 0 deletions packages/filterscript/src/scripts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export * from "./modular_houses";
export * from "./modular_island";
export * from "./net_stats";
export * from "./npc_record";
export * from "./o_spawner";
export * from "./pirate_ship";
export * from "./safe_animated";
export * from "./samp_anims";
Expand Down
14 changes: 14 additions & 0 deletions packages/filterscript/src/scripts/o_spawner/constants/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
export const TOTAL_ITEMS = 20000;
export const SELECTION_ITEMS = 21;
export const ITEMS_PER_LINE = 7;

export const HEADER_TEXT = "Objects";
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;
Loading

0 comments on commit b84c1f1

Please sign in to comment.