Search found 83 matches

by Nikki
Thu Feb 16, 2017 4:20 pm
Forum: General
Topic: problem with to sprite .
Replies: 6
Views: 4752

Re: problem with to sprite .

Your update function needs some logic to not let that paddle come out the screen. function love.update(dt) -- On deplace la raquette avec la souris raquette.x = love.mouse.getX() if raquette.x > (largeur - imageRaquette:getWidth()) then raquette.x = largeur - imageRaquette:getWidth() end if (raquett...
by Nikki
Sat Jan 28, 2017 8:48 pm
Forum: General
Topic: Hello, I am new and have a question about shadows
Replies: 5
Views: 3722

Re: Hello, I am new and have a question about shadows

yeah I mean some standard way of adding dynamic (and parameterized) drop shadows, as found in Flash and Photoshop, I don't think there is though, I've google quite extensively, I can however find some shader solutions that -given some work- might be able to do it. https://love2d.org/imgmirrur/30qxbc...
by Nikki
Wed Jan 25, 2017 5:51 pm
Forum: General
Topic: Hello, I am new and have a question about shadows
Replies: 5
Views: 3722

Hello, I am new and have a question about shadows

Hi first post here,

I hope I got the avatar correct ;)
Is there any dynamic dropshadow solution out there ?

Oh and btw, I've heard much good about this framework, its a nice experience so far playing around with it, thanks for that.