File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
source/funkin/backend/utils Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -143,8 +143,8 @@ class XMLUtil {
143143 var graphicSizey : Null <Int > = Std .parseInt (node .att .graphicSizey );
144144 if (graphicSizey .isNotNull ()) spr .setGraphicSize (0 , graphicSizey );
145145 }
146- if (node .has .flipX && node .att .flipX == " true" ) spr .flipX = true ;
147- if (node .has .flipY && node .att .flipY == " true" ) spr .flipY = true ;
146+ if (( node .has .flipX && node .att .flipX == " true" ) || ( node . has . flipx && node . att . flipx == " true " ) ) spr .flipX = true ;
147+ if (( node .has .flipY && node .att .flipY == " true" ) || ( node . has . flipy && node . att . flipy == " true " ) ) spr .flipY = true ;
148148 if (node .has .updateHitbox && node .att .updateHitbox == " true" ) spr .updateHitbox ();
149149
150150 if (node .has .zoomfactor )
You can’t perform that action at this time.
0 commit comments