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

Line 4: Line 4:
  
 
这里列举了一些你可能感兴趣的:
 
这里列举了一些你可能感兴趣的:
*[http://love2d.org/wiki/Getting_Started 基础]
+
 
 +
<div style="column-count:3;-moz-column-count:3;-webkit-column-count:3">
 +
* [[Getting Started|基础]]
 +
* [[:Category:Tutorials|教程]]
 +
* [[love]] (功能模块)
 +
* [[Game Distribution|游戏分发方式]]
 +
* [[Config Files|配置文件]]
 +
* [[License|许可]] (免费!)
 +
* [[:Category:Games|游戏]]
 +
* [[:Category:Libraries|库]]
 +
* [[:Category:Software|软件]]
 +
* [[:Category:Snippets|其他]]
 +
</div>
 +
 
 +
== Lua ==
 +
 
 +
之前从来没有用过Lua? 这个真实一个非常库的软件!这个手册不会教你Lua, 但是那里有更好的资源.
 +
* [http://lua.org/pil Programming in Lua (first edition)]
 +
* [http://lua-users.org/wiki/TutorialDirectory Lua-Users Tutorials]
 +
* [http://www.lua.org/manual/5.1/ Lua 5.1 Reference Manual]
 +
 +
== Hello World ==
 +
这里是完全的 'hello world'的源代码在LÖVE. 运行这个代码将出现800*600的窗口,并显示白字在黑色屏幕上
 +
<source lang="lua">
 +
function love.draw()
 +
    love.graphics.print('Hello World!', 400, 300)
 +
end
 +
</source>
 +
 
 +
== 编辑这个维基 ==
 +
'''请阅读 [[Guidelines|参考]] 在编辑这个维基!'''
 +
 
 +
== 其他语言 ==
 +
{{i18n|Main_Page}}

Revision as of 04:43, 25 July 2010

欢迎

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

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

Lua

之前从来没有用过Lua? 这个真实一个非常库的软件!这个手册不会教你Lua, 但是那里有更好的资源.

Hello World

这里是完全的 'hello world'的源代码在LÖVE. 运行这个代码将出现800*600的窗口,并显示白字在黑色屏幕上

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

编辑这个维基

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

其他语言