From 2dbb2dde68fe29be4332fdae693ebe70021adc4d Mon Sep 17 00:00:00 2001 From: 7Soul Date: Sun, 28 Oct 2018 19:40:55 -0300 Subject: Created Remove sprites head flipping when walking down (markdown) --- Remove-sprites-head-flipping-when-walking-down.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Remove-sprites-head-flipping-when-walking-down.md diff --git a/Remove-sprites-head-flipping-when-walking-down.md b/Remove-sprites-head-flipping-when-walking-down.md new file mode 100644 index 0000000..a295eda --- /dev/null +++ b/Remove-sprites-head-flipping-when-walking-down.md @@ -0,0 +1,14 @@ +When a sprite walks down, it flips horizontally every other frame to create the walking animation. But the 2 sprites that make the head don't need to flip and this feature can be removed to keep unsymmetrical features from flipping. This will affect all overworld sprites + +Open `data\sprites\facings.asm` + +```diff +FacingStepDown3: ; walking down 2 + db 4 ; # +- db 0, 8, X_FLIP, $80 +- db 0, 0, X_FLIP, $81 ++ db 0, 0, 0, $80 ++ db 0, 8, 0, $81 + db 8, 8, RELATIVE_ATTRIBUTES | X_FLIP, $82 + db 8, 0, RELATIVE_ATTRIBUTES | X_FLIP, $83 +``` \ No newline at end of file -- cgit v1.2.3