mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-29 07:27:59 +01:00
Formatting of comments
This commit is contained in:
parent
8150fc7a86
commit
a1896ec525
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ public class PonySkinModifier implements ISkinModifier {
|
||||||
public void convertSkin(BufferedImage skin, Graphics dest) {
|
public void convertSkin(BufferedImage skin, Graphics dest) {
|
||||||
int scale = skin.getWidth() / 64;
|
int scale = skin.getWidth() / 64;
|
||||||
|
|
||||||
//drawImage(dest, skin, scale, 64, 32, 56, 48, 56, 16, 64, 32); //old code from 2015, let's try it :D
|
//drawImage(dest, skin, scale, 64, 32, 56, 48, 56, 16, 64, 32); //old code from 2015, let's try it :D
|
||||||
//That didn't work right, needs un-mirrored horizontally
|
//That didn't work right, needs un-mirrored horizontally
|
||||||
drawImage(dest, skin, scale, 64, 32, 56, 48, 64, 16, 56, 32); // same code as above but not horizontally flipping the wing texture it copies
|
drawImage(dest, skin, scale, 64, 32, 56, 48, 64, 16, 56, 32); // same code as above but not horizontally flipping the wing texture it copies
|
||||||
//removed all below code because it doesn't seem to be necessary if you just mirror the model
|
//removed all below code because it doesn't seem to be necessary if you just mirror the model
|
||||||
|
|
Loading…
Reference in a new issue