Search found 6 matches

by Cartread
Fri May 25, 2018 3:24 pm
Forum: General
Topic: Today's downtime
Replies: 8
Views: 10905

Re: Today's downtime

Good work getting back online! I needed the wiki, but was able to use https://github.com/tst2005/love-doc and web.archive :)
by Cartread
Tue Feb 10, 2015 4:38 am
Forum: Support and Development
Topic: Would A Classic Doom Inspired Game Work In LOVE2D?
Replies: 53
Views: 26832

Re: Would A Classic Doom Inspired Game Work In LOVE2D?

Jasoco wrote: Image
What is this project? It looks freaking adorable. :)
Reminds me of "pokemon 3d."
by Cartread
Tue Feb 10, 2015 3:55 am
Forum: General
Topic: love.window.isVisible()
Replies: 8
Views: 4697

Re: love.window.isVisible()

I encountered this about a year ago (time of year that it's really cold :neko: ). I posted it on the issue tracker: https://bitbucket.org/rude/love/issue/836/lovevisible-is-not-triggering Alex Szpakowski answered basically the same as slime mentioned above (Windows and SDL interaction). love.window....
by Cartread
Thu Feb 27, 2014 2:54 am
Forum: General
Topic: Outlined text
Replies: 2
Views: 3447

Re: Outlined text

There's a simple outlined font here: https://love2d.org/wiki/Tutorial:Fonts_and_Text I don't know of a library that outlines. I haven't seen outlined text in many games (flash has drop shadows of some kind). I've tried drawing the font black up,down,left and right 1 pixel then drawing color on top (...
by Cartread
Sat Feb 15, 2014 11:41 pm
Forum: General
Topic: What techniques that everyone should know?
Replies: 75
Views: 22804

Re: What techniques that everyone should know?

Using dt: Operator can be an [int] -- 1 = 1 second (dt+dt+dt) dtCountDown = dtCountDown - dt Body acts with [dt] end Do something once before dt hits an amount: if dtCountDown > 0 then if dtCountDown <= dt -- last call else end Colors: MIDDLE_GRAY= {128,128,128,255} thingDraw(x,y,MIDDLE_GRAY) functi...
by Cartread
Sat May 19, 2012 8:36 pm
Forum: Libraries and Tools
Topic: Particle System Tool 0.11
Replies: 17
Views: 12154

Re: Particle System Tool 0.11

I like this tool. Good work. EDIT: Disregard these questions. Thanks. Can I download the .png files anywhere? I want the PS to look like it did when I was editing it. Also, I was wondering if your code to use the PS is the same as mine? In love.load(): ps = love.graphics.newParticleSystem( fire, 5 )...