Difference between revisions of "Main Page"

(remove offline download for now, has been broken for a while)
 
(6 intermediate revisions by 2 users not shown)
Line 7: Line 7:
 
<div style="column-count:3;-moz-column-count:3;-webkit-column-count:3">
 
<div style="column-count:3;-moz-column-count:3;-webkit-column-count:3">
 
* [[Getting Started]]
 
* [[Getting Started]]
 +
* [[Building LÖVE]]
 
* [[:Category:Tutorials|Tutorials]]
 
* [[:Category:Tutorials|Tutorials]]
 
* [[love]] (The module)
 
* [[love]] (The module)
Line 16: Line 17:
 
* [[:Category:Software|Software]]
 
* [[:Category:Software|Software]]
 
* [[:Category:Snippets|Snippets]]
 
* [[:Category:Snippets|Snippets]]
 +
* [[Version History]]
 
</div>
 
</div>
  
 
== Lua ==
 
== Lua ==
 
 
Never used Lua before? It's a really cool language! This manual won't teach you Lua, but fortunately there are other good resources for that.  
 
Never used Lua before? It's a really cool language! This manual won't teach you Lua, but fortunately there are other good resources for that.  
 
* [http://lua.org/pil Programming in Lua (first edition)]
 
* [http://lua.org/pil Programming in Lua (first edition)]

Latest revision as of 23:12, 19 January 2022

Welcome

As you probably know by now, LÖVE is a framework for making 2D games in the Lua programming language. LÖVE is totally free, and can be used in anything from friendly open-source hobby projects, to evil, closed-source commercial ones.

Some interesting places to go from here:

Lua

Never used Lua before? It's a really cool language! This manual won't teach you Lua, but fortunately there are other good resources for that.

Hello World

This is the full source for 'hello world' in LÖVE. Running this code will cause an 800 by 600 window to appear, and display white text on a black background.

function love.draw()
    love.graphics.print('Hello World!', 400, 300)
end

Editing the wiki

Please read the Guidelines before editing the wiki!

Other Languages