Move all sprites into a sprites folder

Co-authored-by: r3cp3ct <45179536+r3cp3ct@users.noreply.github.com>
Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
main
Nic0Nic0Nii 3 years ago
parent 2ad2972ace
commit 2939293f2f
  1. 3
      README.md
  2. 0
      sprites/1x.gif
  3. 0
      sprites/3x.png
  4. 0
      sprites/tiles.gif
  5. 6
      src/sig/engine/Sprite.java

@ -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`. Configuration is modified at the top of the script file while the command list includes all included modules inside of `scripts`.
Mizue (みずえ) 水恵 Mizue (みずえ) 水恵
Turn off inline hints: (F1, search "Preferences: Open Settings (JSON)) "editor.inlayHints.enabled": false

Before

Width:  |  Height:  |  Size: 566 B

After

Width:  |  Height:  |  Size: 566 B

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Before

Width:  |  Height:  |  Size: 735 B

After

Width:  |  Height:  |  Size: 735 B

@ -9,9 +9,9 @@ import javax.imageio.ImageIO;
public enum Sprite{ public enum Sprite{
NANA(new File("..","3x.png")), NANA(new File(new File("..","sprites"),"3x.png")),
NANA_SMALL(new File("..","1x.gif")), NANA_SMALL(new File(new File("..","sprites"),"1x.gif")),
TILE_SHEET(new File("..","tiles.gif")), TILE_SHEET(new File(new File("..","sprites"),"tiles.gif")),
; ;

Loading…
Cancel
Save