Difference between revisions of "Main Page (简体中文)"

(Hello World)
m
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|编译LÖVE]]
 
* [[:Category:Tutorials|教程]]
 
* [[:Category:Tutorials|教程]]
 
* [[love]] (功能模块)
 
* [[love]] (功能模块)

Revision as of 08:57, 28 July 2013

欢迎

就像你可能知道的那样,LÖVE是一个使用 Lua 作为编程语言的 2D 游戏框架。,LÖVE是完全免费的,能用在任何友好的开源项目,或者邪恶的闭源的商业项目。

这里列举了一些你可能感兴趣的:

Lua

从来没有用过Lua? 它真的是一种非常酷的编程语言!在本手册中不会教你Lua, 但幸运的是,下面列出了一些其它Lua好资源。

Hello World

下面是一个完整的 LÖVE 'hello world' 源代码。运行这个代码,屏幕上会显示一个 800 x 600 的窗口,然后在黑色背景的窗口中显示一些白色文本。

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

编辑这个维基

请阅读 参考 再编辑这个维基!

其他语言