Page 4 of 8

Re: New Icons

Posted: Mon Feb 15, 2016 6:54 pm
by monolifed
S0lll0s wrote:I made a little splash animation:
intro.love
It still needs a löve text, an interesting background and I should use a shader instead of the stencil (non-antialiased edge because of this).
Press 'R' to repeat to pay respects

Re: New Icons

Posted: Mon Feb 15, 2016 7:23 pm
by Ranguna259
S0lll0s wrote:I made a little splash animation:
intro.love
It still needs a löve text, an interesting background and I should use a shader instead of the stencil (non-antialiased edge because of this).
+1
I think that the background is good the way it is, with a plain color, the only thing that is not so good are the edges so you should try that shader fix that you said.

Re: New Icons

Posted: Mon Feb 15, 2016 8:20 pm
by zorg
ingsoc451 wrote:
S0lll0s wrote:I made a little splash animation:
intro.love
It still needs a löve text, an interesting background and I should use a shader instead of the stencil (non-antialiased edge because of this).
Press 'R' to repeat to pay respects
I'm pushing money into all my drive slots, but nothing's happening. :( :3

Re: New Icons

Posted: Mon Feb 15, 2016 9:21 pm
by EntranceJew
S0lll0s wrote:I made a little splash animation:
intro.love
It still needs a löve text, an interesting background and I should use a shader instead of the stencil (non-antialiased edge because of this).
This is pretty good! I had to rewatch it a couple times 'cause I was amazed at how nicely everything went together.

Re: New Icons

Posted: Mon Feb 15, 2016 9:24 pm
by bartbes
It really is silky smooth, amazing. One thing that might make it even better though: a single heartbeat after the (current) end.

Re: New Icons

Posted: Mon Feb 15, 2016 9:58 pm
by vrld
I took your code and added a shader that does smooth masking and adds a little shadow like in Davidobot's wallpaper. And there is a little heartbeat. "Made with LÖVE" text is still missing.

Re: New Icons

Posted: Mon Feb 15, 2016 10:29 pm
by s-ol
vrld wrote:I took your code and added a shader that does smooth masking and adds a little shadow like in Davidobot's wallpaper. And there is a little heartbeat. "Made with LÖVE" text is still missing.
Nice, I put it up in a repo on https://github.com/love2d-community/splashes. I'm no org admin but if whoever is one reads this, out yourself so people can contribute maybe. Also vrld you could file a PR?

EDIT: just got home, i really dig how the shadow fades in (I actually had a static one in my version? or maybe I screwed it up in the end and didn't notice) but the masking doesn't work for me, the blue-and-pink stays there outside of the bubble in the end - ill take a look at the source now.

Re: New Icons

Posted: Mon Feb 15, 2016 10:59 pm
by vrld
It's does not mask, it only very subtly lights up the area outside the circle. I think it looks better that way, but if you want the background to show, change line 35 to:

Code: Select all

color = color * (1.-s) + vec4(141.,178.,210.,255.)/255. * s;

Re: New Icons

Posted: Mon Feb 15, 2016 11:16 pm
by s-ol
vrld wrote:It's does not mask, it only very subtly lights up the area outside the circle. I think it looks better that way, but if you want the background to show, change line 35 to:

Code: Select all

color = color * (1.-s) + vec4(141.,178.,210.,255.)/255. * s;
yeah I noticed, I changed it to

Code: Select all

color.a *= s;
instead of color = desat(color);
to get the mask effect. Personally I find the lightening a bit too subtle.

Re: New Icons

Posted: Tue Feb 16, 2016 2:20 am
by tuupakku
The intro is fantastic. Amazing work guys.