Search found 131 matches

by steVeRoll
Sun Nov 25, 2018 9:09 pm
Forum: Games and Creations
Topic: Super Chains
Replies: 34
Views: 26841

Re: Super Chains

Very nice so far! Is the first level currently the only level, or are the next levels supposed to be unlocked after a certain score? No matter how many chains I cleared, the other levels stayed locked.
Other than that, it works really well.
by steVeRoll
Thu Nov 22, 2018 3:39 pm
Forum: Games and Creations
Topic: Super Chains
Replies: 34
Views: 26841

Re: Super Chains

I'd love to try it on Windows as well. The stuff you showed in the video looks very nice, despite the game being incomplete.
by steVeRoll
Fri Nov 16, 2018 9:40 pm
Forum: Games and Creations
Topic: PlusPlus: an app for people who can't count
Replies: 6
Views: 6201

Re: PlusPlus: an app for people who can't count

Well done! Being able to delete or even change the order of counters would be nice.
by steVeRoll
Tue Oct 30, 2018 11:18 am
Forum: General
Topic: Protecting source code?
Replies: 5
Views: 10754

Protecting source code?

With the method that is written in "Game Distribution" (for windows), It simply mashes up the löve executable with your source code. You can still open the executable with WinRar and extract the source code from there. This is worrying for me because I am making a multiplayer game, and som...
by steVeRoll
Tue Oct 30, 2018 9:58 am
Forum: Support and Development
Topic: Love.exe will stop responding after one update
Replies: 15
Views: 8838

Re: Love.exe will stop responding after one update

Some more info would be nice. What OS are you using? Have you tried opening löve without any game?
by steVeRoll
Tue Oct 30, 2018 9:57 am
Forum: Support and Development
Topic: [solved] Rotating 2 rectangles
Replies: 1
Views: 1733

Re: Rotating 2 rectangles

We will understand your problem better if you send us the code you're using.
by steVeRoll
Sat Oct 20, 2018 9:01 pm
Forum: Support and Development
Topic: Love2D Doesnt run in Windows 10 [SOLVED]
Replies: 9
Views: 8884

Re: Love2D Doesnt run in Windows 10

Can you elaborate on "doesn't run"? Could you tell us if an error message pops up when you try to run it, or nothing at all?
by steVeRoll
Sun Aug 12, 2018 9:30 pm
Forum: Support and Development
Topic: i am looking for an example to make a text blink
Replies: 4
Views: 3537

Re: i am looking for an example to make a text blink

I guess you could do something like this:

Code: Select all

function love.draw()
  if math.floor(love.timer.getTime()) % 2 == 0 then
    love.graphics.print("Your text here")
  end
end
by steVeRoll
Fri Aug 10, 2018 6:07 pm
Forum: Support and Development
Topic: Black Screen when Dropping .love on Love2D
Replies: 7
Views: 6642

Re: Black Screen when Dropping .love on Love2D

Are you sure that this code is written in a file called main.lua, and that file is in the root of the .love you dropped?
by steVeRoll
Thu Aug 09, 2018 6:04 pm
Forum: Support and Development
Topic: How to make a gradient across multiple
Replies: 2
Views: 2059

Re: How to make a gradient across multiple

I guess you could draw the text to a canvas, and apply the shader to that.