Difference between revisions of "Main Page (正體中文)"

(Created page with "== 歡迎 == 如您所知, [http://love2d.org LÖVE] 是一套採用 Lua 程式語法的 2D 遊戲框架. LÖVE 不僅完全免費, 並可用在開源或商用封閉源碼專案...")
 
Line 10: Line 10:
 
* [[:Category:Tutorials|教學]]
 
* [[:Category:Tutorials|教學]]
 
* [[love]] (程式模組)
 
* [[love]] (程式模組)
* [[遊戲發行]]
+
* [[Game Distribution|遊戲發行]]
* [[設定檔案]]
+
* [[Config Files|設定檔案]]
* [[使用授權]] (免費!)
+
* [[License|使用授權]] (免費!)
 
* [[:Category:Games|相關遊戲]]
 
* [[:Category:Games|相關遊戲]]
 
* [[:Category:Libraries|程式庫]]
 
* [[:Category:Libraries|程式庫]]

Revision as of 12:18, 13 August 2013

歡迎

如您所知, LÖVE 是一套採用 Lua 程式語法的 2D 遊戲框架. LÖVE 不僅完全免費, 並可用在開源或商用封閉源碼專案中.

下列連結提供相關資訊:

若要在非上網時段閱讀此維基內容,可以下載每周更新的文件資料檔案 here.

Lua

從未使用過 Lua? Lua 是非常好用的程式語言! 這裡不會教您 Lua, 可以從下列連結中找到相關資料.

Hello World

這是用 LÖVE 寫的 'hello world' 原始碼. 執行時會出現一個 800 x 600 的黑色畫面,並以白字顯示 'hello world'.

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

Editing the wiki

Please read the Guidelines before editing the wiki!

Other Languages