Search found 9 matches

by Cartread
Fri Feb 14, 2025 12:37 am
Forum: Games and Creations
Topic: Conjurers Demo released
Replies: 0
Views: 4327

Conjurers Demo released

Card + Tactics game based on a complete Zodiac of creature combinations! Conjurers on Steam Discord QscU3RRtlEQ What's up fellow Lua lubbers! Try my game demo if you like turn-based cards and tactics. Conjurers will be a part of Steam Next Fest next week. The lua files are zlib license and you can ...
by Cartread
Wed Jan 22, 2025 1:21 am
Forum: Games and Creations
Topic: Wizard School Dropout - Be Mage Do Crime (Preview 3: 3/1/25 - Air spells!)
Replies: 5
Views: 4512

Re: Wizard School Dropout - Turn based RPG (Initial Release)

I played for over an hour; it was fun. I cleared the first floor of the vampire tower and think it was designed well. I made some mistakes which led to death (closed doors on myself a lot, but know you can r-click and just walk). Also burned myself, but yeah, it was fun. Personally wish for controll...
by Cartread
Mon Jan 20, 2025 1:32 am
Forum: General
Topic: I added a camera but i made me unable to move, help!
Replies: 1
Views: 1925

Re: I added a camera but i made me unable to move, help!

camera = require 'libraries/camera'

What's the library?
by Cartread
Fri May 25, 2018 3:24 pm
Forum: General
Topic: Today's downtime
Replies: 8
Views: 11874

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: 30939

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: 5091

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: 3872

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: 25780

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: 13386

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 )...