Page 64 of 82

Re: More skins coming soon

Posted: Fri Nov 10, 2017 8:12 pm
by blitzcraig
maybe I'm misunderstanding, but for clarity, you can extract the files and adjust the colors from mobile devices as well :)

Re: More skins coming soon

Posted: Fri Nov 10, 2017 8:14 pm
by NightBaby
blitzcraig wrote:maybe I'm misunderstanding, but for clarity, you can extract the files and adjust the colors from mobile devices as well :)
I use my phone to change the colors and it works perfectly fine :)

Re: More skins coming soon

Posted: Fri Nov 10, 2017 8:20 pm
by MadMikael
blitzcraig wrote:maybe I'm misunderstanding, but for clarity, you can extract the files and adjust the colors from mobile devices as well :)
The images are colour adjusted from mobile, yes, no problem.
But, some have troubles extracting the actual zip file, or finding the images, or loading them uncropped on some devices.
That's the reason for my other post that I linked to.
If a player asks for a specific image, I can add a single frame there for them to play with.
However, each image takes me around 10 to 15 minutes on my pathetic hardware.
So, those who ask for too much get told to ask elsewhere.

Re: More skins coming soon

Posted: Fri Nov 10, 2017 8:53 pm
by blitzcraig
OK gotcha - thanks for clarifying :)

Re: More skins coming soon

Posted: Sun Nov 12, 2017 9:12 am
by Mr_Maks
Green Lion

ColorMatrix matrix = new ColorMatrix();
ColorMatrix temp = new ColorMatrix();

temp.setRotate(0, 149);
matrix.postConcat(temp);

temp.setRotate(1, 256);
matrix.postConcat(temp);

temp.setRotate(2, 161);
matrix.postConcat(temp);

temp.setScale(1.01, 1.00, 1.00, 1.00);
matrix.postConcat(temp);

return matrix;

Re: More skins coming soon

Posted: Sun Nov 12, 2017 9:12 pm
by madmaniacal1
Mr_Maks wrote:Green Lion
Don't just post the picture. Post the matrix numbers as well. That will help make it easier for Compbatant to add to game (if he adds).

Re: More skins coming soon

Posted: Thu Nov 16, 2017 3:41 am
by SSweetzorr
Screenshot_2017-11-15-23-23-30.png
Screenshot_2017-11-15-23-23-30.png (156.63 KiB) Viewed 4841 times


Demonic rat : < nick name



Color Filters
Code: > R: 1.065f, -0.274f, -0.655f, 0f, 0f
G: 0.010f, -0.281f, 0.003f, 0f, 0f
B: -0.022, -0.012, -0.042, 0f, 0f
A: 0f, 0f, 0f, 2.000f, 0f

Re: More skins coming soon

Posted: Thu Nov 16, 2017 10:10 am
by tuy
Devil Monk (for mages different skin, and can be have tale about other monks)

new ColorMatrix(new float[] {
    -0.227f, 0.142f, 0.594f, 0f, 0f,
    -0.549f, -0.076f, 1.058f, 0f, 0f,
    -0.091f, 0.101f, -0.045f, 0f, 0f,
    0f, 0f, 0f, 2.000f, 0f
});

Image


Armoured Mage


new ColorMatrix(new float[] {
    0.262f, 0.464f, -0.326f, 0f, 0f,
    0.554f, 0.127f, -0.534f, 0f, 0f,
    -0.185f, 0.101f, -0.928f, 0f, 0f,
    0f, 0f, 0f, 2.000f, 0f
});

Image

Berserker(Barbarian)


new ColorMatrix(new float[] {
1.075f, 0.313f, -0.479f, 0f, 0f,
1.107f, 0.060f, -0.702f, 0f, 0f,
0.873f, 0.207f, -0.690f, 0f, 0f,
0f, 0f, 0f, 1.250f, 0f
});
Image

Vlad's Dragon(Vlad's Undead Dragon)

new ColorMatrix(new float[] {
1.075f, 0.313f, -0.479f, 0f, 0f,
1.107f, 0.060f, -0.702f, 0f, 0f,
0.873f, 0.207f, -0.690f, 0f, 0f,
0f, 0f, 0f, 1.250f, 0f
});

Image

More skins coming soon

Posted: Thu Nov 16, 2017 11:02 am
by SessizAvci
Ninjarcher

ColorMatrix matrix = new ColorMatrix();
ColorMatrix temp = new ColorMatrix();

temp.setRotate(0, 100);
matrix.postConcat(temp);

temp.setScale(1.04, -1.00, 0.71, 0.89);
matrix.postConcat(temp);

temp.setSaturation(0.96);
matrix.postConcat(temp);

return matrix;

More skins coming soon

Posted: Thu Nov 16, 2017 11:06 am
by SessizAvci
Devil Vlad

ColorMatrix matrix = new ColorMatrix();
ColorMatrix temp = new ColorMatrix();

temp.setScale(1.14, -1.00, -1.00, 1.07);
matrix.postConcat(temp);

return matrix;