Difference between revisions of "Getting Started (简体中文)"

(Making a Game)
Line 9: Line 9:
 
</code>
 
</code>
  
== Making a Game ==
+
== 制作游戏 ==
  
To make a minimal game, create a folder anywhere, and open up your favorite code editor. Notepad++ is a pretty good one for Windows, and it has Lua support built in. Create a new file in the folder you just created, and name it main.lua. Put the following code in the file, and save it.
+
要制作一个最小的游戏, 先在硬盘中任意位置创建一个文件夹,然后打开你喜欢的代码编辑器。 Notepad ++ Windows 平台上很好的选择,它已经内建 Lua 支持。 在刚才创建的文件夹中新建一个名为 main.lua 的文件。 将下面的代码输入或复制到 main.lua 中,保存文件。
  
 
<source lang="lua">
 
<source lang="lua">

Revision as of 22:29, 1 May 2011

获得 LÖVE

LÖVE 网站 下载最新版本的 LÖVE,然后安装到电脑中。 如果使用 Windows 平台并不是必须要安装 LÖVE 才可使用,也可以通用下载 LÖVE 压缩包,然后解压到硬盘中任意位置的方式来使用 LÖVE 。

使用如下命令可以查看已安装的 LÖVE 版本:

love --version

制作游戏

要制作一个最小的游戏, 先在硬盘中任意位置创建一个文件夹,然后打开你喜欢的代码编辑器。 Notepad ++ 是 Windows 平台上很好的选择,它已经内建 Lua 支持。 在刚才创建的文件夹中新建一个名为 main.lua 的文件。 将下面的代码输入或复制到 main.lua 中,保存文件。

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