Search found 64 matches

by DeltaF1
Wed Nov 04, 2015 10:57 pm
Forum: Games and Creations
Topic: Bussard: programming spaceflight sim
Replies: 19
Views: 12149

Re: Bussard: programming spaceflight sim

I'm not at the same computer that was having the REPL lag issues right now, but I'm building LOVE for this system and will test it on this laptop. This laptop is older and weaker than the other one, so if it can handle the REPL it might be a driver issue on my normal computer.
by DeltaF1
Sun Nov 01, 2015 10:49 pm
Forum: Games and Creations
Topic: Bussard: programming spaceflight sim
Replies: 19
Views: 12149

Re: Bussard: programming spaceflight sim

First off: This is really amazing! It's everything I like in a game 1. Space 2. open World 3. SPAACE 4. programming It's challenging, but the trajectory really helps. I spent ages trying to match orbits with the station perfectly before realizing I could let its gravity keep me nearby. There do seem...
by DeltaF1
Fri Oct 30, 2015 8:42 pm
Forum: Support and Development
Topic: Classic arcade style menu?
Replies: 2
Views: 1612

Re: Classic arcade style menu?

Keep track of which menu item is selected, then change that index based on which directional key is pressed and what the button's neighbours are? So either menuIndex = 1 menuItems = { "New Game" "Options" "Exit" } function love.keypressed(key) if key == "up" t...
by DeltaF1
Wed Oct 28, 2015 8:22 pm
Forum: Games and Creations
Topic: Spellrazor (Free strategy-sh'mup-hacking) 0.9.10 is out
Replies: 74
Views: 48829

Re: Spellrazor [Demo] 0.3.0 - Rogue-lite meets Defender/Berz

You can leave the option to pay 0$, but suggest a price you think it's worth.
by DeltaF1
Wed Oct 28, 2015 2:26 pm
Forum: Games and Creations
Topic: Spellrazor (Free strategy-sh'mup-hacking) 0.9.10 is out
Replies: 74
Views: 48829

Re: Spellrazor [Demo] 0.3.0 - Rogue-lite meets Defender/Berz

Now that you have an itch.io page, could you make it pay-what-you-want? That way people can still download it for free but we can also throw money at you :P

Edit: Also, could you add a .love download on the itch.io page for the linux users?
by DeltaF1
Sun Oct 25, 2015 8:57 pm
Forum: General
Topic: Internet Explorer Simulator
Replies: 9
Views: 6347

Re: Internet Explorer Simulator

XD Not what I was expecting.
by DeltaF1
Sun Oct 25, 2015 5:29 pm
Forum: Games and Creations
Topic: Spellrazor (Free strategy-sh'mup-hacking) 0.9.10 is out
Replies: 74
Views: 48829

Re: Spellrazor [Demo] 0.2.9 - Rogue-lite meets Defender/Berz

This is really well made. I decided to download it and check it out, and 30 minutes just disappeared. It's clean, it's difficult, it's fun.
by DeltaF1
Thu Oct 22, 2015 2:46 am
Forum: Support and Development
Topic: Rounded corners and quads?
Replies: 3
Views: 2422

Re: Rounded corners and quads?

you could also use stencils
by DeltaF1
Thu Oct 22, 2015 2:25 am
Forum: Libraries and Tools
Topic: Noobhub - opensource multiplayer library for LÖVE
Replies: 29
Views: 26357

Re: Noobhub - opensource multiplayer library for LÖVE

So it would all be peer-to-peer then?
by DeltaF1
Tue Oct 20, 2015 9:21 pm
Forum: Support and Development
Topic: Applying a textured overlay
Replies: 6
Views: 2935

Re: Applying a textured overlay

Maybe i'm misunderstanding what effect you want, but can't you just draw the texture slightly transparently over the whole screen? If you want the texture to only show through, maybe you should look into [wiki]love.graphics.setStencil[/wiki]?