Search found 78 matches
- Tue May 09, 2017 6:28 pm
- Forum: General
- Topic: Any interest in a Löve speed-jam?
- Replies: 6
- Views: 8579
Re: Any interest in a Löve speed-jam?
I wouldn't be able to stream, but I'd love to see if I could actually finish something in time and to watch others make projects too.
- Fri Mar 24, 2017 4:09 am
- Forum: Support and Development
- Topic: Can we get LÖVE into the Apple Store please?
- Replies: 5
- Views: 7863
Re: Can we get LÖVE into the Apple Store please?
It's either free or not much to get it onto google play.
To get it onto the Mac store is $100 USD a year, and can be painful with updates.
To get it onto the Mac store is $100 USD a year, and can be painful with updates.
- Sun Feb 12, 2017 11:02 am
- Forum: General
- Topic: [Solved] Graphical Problems with the forums?
- Replies: 4
- Views: 7224
Re: Graphical Problems with the forums?
http://love2d.org/forums/viewtopic.php?f=4&t=83492&start=30 http://love2d.org/forums/viewtopic.php?f=4&t=83503 Thanks it fixed it, probably should have searched. Would it be possible (as this seems to happen, be it rarely, given the posts) to check if this is happening and have it say t...
- Sun Feb 12, 2017 4:04 am
- Forum: General
- Topic: [Solved] Graphical Problems with the forums?
- Replies: 4
- Views: 7224
[Solved] Graphical Problems with the forums?
I have a fun graphical problem, also the quick links option menu and user options menu are constantly open.
Is this a thing for anyone else? And if no, is there a way to fix this?
Is this a thing for anyone else? And if no, is there a way to fix this?
- Tue Feb 07, 2017 12:01 am
- Forum: Support and Development
- Topic: Can't install super toast ( love 0.10.2 )
- Replies: 2
- Views: 5090
Re: Can't install super toast ( love 0.10.2 )
I'm assuming you're just running the downloaded file, basically, you need to give love2d something to work with.
I'd recommend going here: https://love2d.org/wiki/Getting_Started
I'd recommend going here: https://love2d.org/wiki/Getting_Started
- Thu Feb 02, 2017 2:13 am
- Forum: General
- Topic: Necroposting!
- Replies: 21
- Views: 15747
Re: Necroposting!
I didn't think we should put warnings, until I saw this.Inny wrote:I'm a fan of snarky images, like this one:
- Wed Feb 01, 2017 7:26 am
- Forum: Support and Development
- Topic: Bug trying to spawn bullets from a specific enemy position
- Replies: 3
- Views: 5476
Re: Bug trying to spawn bullets from a specific enemy position
TL;DR: You don't need the ~= nil But even then you could end up with nil if your table is empty! In any case, you should probably check if the choice is there: local choice = enemy.spawned[enemy.bullet_position] if choice ~= nil then bullet_spawn(choice.x,choice.y,0,100,1) end Or you could do: local...
- Tue Jan 31, 2017 6:26 am
- Forum: Games and Creations
- Topic: Metanet Hunter CD (IT'S ON STEAM)
- Replies: 21
- Views: 26031
Re: Metanet Hunter CD (IT'S ON STEAM)
This looks really cool!
Well done with getting it on Steam!
Keys?
Well done with getting it on Steam!
Keys?
- Thu Jan 26, 2017 3:27 am
- Forum: Games and Creations
- Topic: Porting my own Veins of the Earth to LOVE
- Replies: 90
- Views: 59958
Re: Porting my own Veins of the Earth to LOVE
I've found a fun little bug, when you chose a race it adds to your score, and you can choose as many times as you want - I have a constitution and charisma of 100.
- Wed Jan 11, 2017 2:56 pm
- Forum: Support and Development
- Topic: dynamic updates or patches
- Replies: 5
- Views: 8044
Re: dynamic updates or patches
Alternatively you could keep track of every "version" of every file on your server, and only download the ones that are a newer version that you have locally. This may be tricky, though. Surely you could have mygamedomain.com/latest, have that link to the latest version and have the game ...