Skip to content

Commit

Permalink
Fix textures
Browse files Browse the repository at this point in the history
  • Loading branch information
JunePrimavera committed Apr 24, 2024
1 parent a412c69 commit 2a1239c
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/main/java/xyz/sillyjune/notebook/Notebook.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,24 +69,24 @@ public void onInitialize() {
}

public static final ButtonTextures MAIN_BUTTON_ICON = new ButtonTextures(
new Identifier("notebook:textures/gui/book/unfocused.png"),
new Identifier("notebook:textures/gui/book/focused.png")
new Identifier("notebook:book/unfocused"),
new Identifier("notebook:book/focused")
);
public static final ButtonTextures NEW_PAGE_ICON = new ButtonTextures(
new Identifier("notebook:textures/gui/new_page/unfocused.png"),
new Identifier("notebook:textures/gui/new_page/focused.png")
new Identifier("notebook:new_page/unfocused"),
new Identifier("notebook:new_page/focused")
);
public static final ButtonTextures DEL_PAGE_ICON = new ButtonTextures(
new Identifier("notebook:textures/gui/delete_page/unfocused.png"),
new Identifier("notebook:textures/gui/delete_page/focused.png")
new Identifier("notebook:delete_page/unfocused"),
new Identifier("notebook:delete_page/focused")
);
public static final ButtonTextures LAST_BOOK_ICON = new ButtonTextures(
new Identifier("notebook:textures/gui/last_book/unfocused.png"),
new Identifier("notebook:textures/gui/last_book/focused.png")
new Identifier("notebook:last_book/unfocused"),
new Identifier("notebook:last_book/focused")
);
public static final ButtonTextures NEXT_BOOK_ICON = new ButtonTextures(
new Identifier("notebook:textures/gui/next_book/unfocused.png"),
new Identifier("notebook:textures/gui/next_book/focused.png")
new Identifier("notebook:next_book/unfocused"),
new Identifier("notebook:next_book/focused")
);
public static String BOOK_FOLDER = "Notebook";
public static boolean DEV_ONLY = false;
Expand Down

0 comments on commit 2a1239c

Please sign in to comment.