diff --git a/.gitignore b/.gitignore index 8b905e1643..3138e6d0ed 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ addons/* dev-libs/ *.sum .vs/ +.env \ No newline at end of file diff --git a/assets/data/config/menuItems.txt b/assets/data/config/menuItems.txt index a8ec55b16e..677cc54593 100644 --- a/assets/data/config/menuItems.txt +++ b/assets/data/config/menuItems.txt @@ -1,4 +1,5 @@ story mode freeplay options -credits \ No newline at end of file +credits +gamejolt \ No newline at end of file diff --git a/assets/data/editors/layouts/stage/characterEditScreen.xml b/assets/data/editors/layouts/stage/characterEditScreen.xml index fe1bf3ba65..05268bc86d 100644 --- a/assets/data/editors/layouts/stage/characterEditScreen.xml +++ b/assets/data/editors/layouts/stage/characterEditScreen.xml @@ -8,19 +8,10 @@ return 20 + (150 + XOFFSET) * c; } previewSprite = null; - if(!char.isAnimate) { + if(char.animateAtlas == null) { previewSprite = new FunkinSprite(0, 0); previewSprite.frame = char.frame; - self.add(previewSprite); - } else { - previewSprite = new FunkinSprite(0, 0); - previewSprite.frames = char.frames; - previewSprite.applyStageMatrix = false; - // quite a bit of hacking to it buuuuuut - previewSprite.animation._curAnim = char.animation._curAnim; - previewSprite.animation.frameIndex = char.animation.frameIndex; - self.add(previewSprite); } @@ -62,10 +53,8 @@ -
- - +
@@ -89,7 +78,7 @@
-