diff --git a/README.md b/README.md index 79e063f..5e0fba3 100644 --- a/README.md +++ b/README.md @@ -26,4 +26,5 @@ The system will also use the SigScript updating system to keep files up-to-date. ``` Configuration is modified at the top of the script file while the command list includes all included modules inside of `scripts`. -Mizue (みずえ) 水恵 \ No newline at end of file +Mizue (みずえ) 水恵 +Turn off inline hints: (F1, search "Preferences: Open Settings (JSON)) "editor.inlayHints.enabled": false \ No newline at end of file diff --git a/1x.gif b/sprites/1x.gif similarity index 100% rename from 1x.gif rename to sprites/1x.gif diff --git a/3x.png b/sprites/3x.png similarity index 100% rename from 3x.png rename to sprites/3x.png diff --git a/tiles.gif b/sprites/tiles.gif similarity index 100% rename from tiles.gif rename to sprites/tiles.gif diff --git a/src/sig/engine/Sprite.java b/src/sig/engine/Sprite.java index f09f6a1..98576b7 100644 --- a/src/sig/engine/Sprite.java +++ b/src/sig/engine/Sprite.java @@ -9,9 +9,9 @@ import javax.imageio.ImageIO; public enum Sprite{ - NANA(new File("..","3x.png")), - NANA_SMALL(new File("..","1x.gif")), - TILE_SHEET(new File("..","tiles.gif")), + NANA(new File(new File("..","sprites"),"3x.png")), + NANA_SMALL(new File(new File("..","sprites"),"1x.gif")), + TILE_SHEET(new File(new File("..","sprites"),"tiles.gif")), ;