Search found 384 matches

by Santos
Tue Oct 18, 2016 9:56 am
Forum: General
Topic: Simple game tutorials
Replies: 18
Views: 30045

Re: Simple game tutorials

Ulydev , thank you! :) davisdude , thank you HEAPS for the pull requests, I am a fan of proper spelling and grammar, and you really saved the day with the Eyes one! I added a note on the main page about window sizing. I'm not completely sure which common practices you're referring to, feel free to ...
by Santos
Mon Oct 17, 2016 8:40 am
Forum: General
Topic: Simple game tutorials
Replies: 18
Views: 30045

Simple game tutorials

Hi everyone, I made some tutorials for people who know the basics of Lua and LOVE but don't quite know how to go about making something game-like. When I was at this stage I felt like I wanted some tutorials kind of like these. Here they are: https://simplegametutorials.github.io/ And here are pictu...
by Santos
Sun Mar 13, 2016 9:20 am
Forum: General
Topic: ParticleSystem in Lua
Replies: 1
Views: 1449

ParticleSystem in Lua

This is LOVE's ParticleSystem implemented in Lua, basically a port of this file . Usage: function love.load() ParticleSystem = require('ParticleSystem') ps = ParticleSystem.newParticleSystem(texture) ps:setEmissionRate(10) ps:setParticleLifetime(1) end function love.update(dt) ps:update(dt) end func...
by Santos
Tue Jan 26, 2016 7:56 am
Forum: Libraries and Tools
Topic: LÖVE-API Documentation (as a lua table)
Replies: 33
Views: 20112

Re: LÖVE-API Documentation (as a lua table)

Thanks to rmcode and contributors I've been able to update my one-page reference to 0.10.0. Edit: New location: http://love2d-community.github.io/love-api/
by Santos
Thu Sep 03, 2015 5:38 pm
Forum: General
Topic: Deprecated Features and the Wiki
Replies: 24
Views: 8534

Re: Deprecated Features and the Wiki

Hi Andrew, I know what you mean! I tried to make a more efficient reference here: http://santos.nfshost.com/love092.html It's not good, but it doesn't have any deprecated features (hopefully!) and everything is a Ctrl-F away. As for the wiki, if possible it might be cool if each version could be sep...
by Santos
Mon Oct 13, 2014 10:42 pm
Forum: General
Topic: Drawing Quads
Replies: 4
Views: 4821

Re: Drawing Quads

by Santos
Sat Oct 11, 2014 8:51 pm
Forum: General
Topic: Is there interest in a comprehensive guide to LÖVE?
Replies: 5
Views: 2553

Re: Is there interest in a comprehensive guide to LÖVE?

I also think a physical book would be unsuitable. And, even though I mentioned "reading", there are other forms it could take other than text which might be interesting to think about. I don't think there's anything quite like what I'm thinking of, but I haven't been very specific, as not ...
by Santos
Sat Oct 11, 2014 6:35 pm
Forum: General
Topic: Is there interest in a comprehensive guide to LÖVE?
Replies: 5
Views: 2553

Is there interest in a comprehensive guide to LÖVE?

Is there interest in a guide/book/manual to LÖVE, something you can read front to back to gain an understanding of all of LÖVE's functionality? The wiki is a useful reference to the API, and does have some guide-like pages, but I would think reading it "front to back" would be confusing an...
by Santos
Wed Sep 10, 2014 6:38 pm
Forum: Libraries and Tools
Topic: LÖVE-IDEA-Plugin (LÖVE Plugin for IntelliJ Idea)
Replies: 15
Views: 14259

Re: LOVE-IDEA-API (LÖVE API for IntelliJ Idea)

There's the LÖVE API in Lua table here: http://santos.nfshost.com/love_api.lua With it you could automatically create files with something like this: api = require('love_api') love.filesystem.append('love.lua', "module('love')\r\n") for i, f in ipairs(api.callbacks) do love.filesystem.appe...
by Santos
Fri Apr 25, 2014 1:49 am
Forum: General
Topic: Offline LÖVE documentation for download
Replies: 106
Views: 616919

Re: Offline LÖVE documentation for download

Thanks Paul! ^^

By the way, if anyone wants to put this up on GitHub or whatever and take over this "project", go for it!