Difference between revisions of "Main Page"

m
(Update offline docs link)
(10 intermediate revisions by 3 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]]
* [[Tutorials]]
+
* [[Building LÖVE]]
 +
* [[:Category:Tutorials|Tutorials]]
 
* [[love]] (The module)
 
* [[love]] (The module)
 
* [[Game Distribution]]
 
* [[Game Distribution]]
 
* [[Config Files]]
 
* [[Config Files]]
 
* [[License]] (Free!)
 
* [[License]] (Free!)
* [[Games]]
+
* [[:Category:Games|Games]]
* [[Libraries]]
+
* [[:Category:Libraries|Libraries]]
 +
* [[:Category:Software|Software]]
 +
* [[:Category:Snippets|Snippets]]
 +
* [[Version History]]
 
</div>
 
</div>
 +
 +
If you want to read this wiki without an internet connection, you can download a weekly generated package for offline viewing [https://love2d.org/wiki.zip here].
  
 
== 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)]
Line 33: Line 38:
 
== Editing the wiki ==
 
== Editing the wiki ==
 
'''Please read the [[Guidelines]] before editing the wiki!'''
 
'''Please read the [[Guidelines]] before editing the wiki!'''
 +
 +
== Other Languages ==
 +
{{i18n|Main_Page}}

Revision as of 19:53, 22 March 2018

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:

If you want to read this wiki without an internet connection, you can download a weekly generated package for offline viewing 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