Main Page (正體中文)

歡迎

如您所知, 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