Difference between revisions of "Config Files (简体中文)"

(介绍)
(love.conf)
Line 5: Line 5:
 
== love.conf ==
 
== love.conf ==
  
<code>love.conf</code> 函数带来一个参数:一个填满所有的默认数值的表,并且你根据需要更改这些参数。例如,如果你要更改默认的屏幕尺寸:
+
<code>love.conf</code> 函数有一个参数:一个填满所有默认数值的表,并且你可以根据喜好更改这些参数。例如,想更改默认的屏幕尺寸:
 
<source lang="lua">
 
<source lang="lua">
 
function love.conf(t)
 
function love.conf(t)
Line 13: Line 13:
 
</source>
 
</source>
  
如果你不需要物理模块已经手柄模块,就这么写
+
如果不需要物理模块或手柄模块,就这么写
 
<source lang="lua">
 
<source lang="lua">
 
function love.conf(t)
 
function love.conf(t)
Line 21: Line 21:
 
</source>
 
</source>
  
设置不需要的模块为false是一件值得鼓励的事,尤其是你要发行你的游戏。他将缩减启动时间(稍微的)和内存占用(同样稍微的)。
+
在发行游戏时,把不需要的模块设置为false是一件值得鼓励的事。这将减不启动时间(稍微的)和减少内存占用(稍微的)。
  
这里是一个完整的选项列表和他们的默认值:
+
下面是一个所有选项以及它们的缺省值列表:
 
<source lang="lua">  
 
<source lang="lua">  
 
function love.conf(t)
 
function love.conf(t)
Line 49: Line 49:
 
</source>
 
</source>
  
注意你不能禁止[[love.filesystem]]; 他是被强制使用的。同样对 The same goes for the [[love]] module itself.
+
注意,不能禁止[[love.filesystem]]; 他是被强制使用的。同样对 [[love]] 模块本身也是如此。
  
 
== Other Languages ==
 
== Other Languages ==

Revision as of 23:29, 1 May 2011

介绍

如果在游戏文件夹中(或在 .love 文件中)有一个名为 conf.lua 的文件, 它将在 LÖVE 模块加载 之前 运行。你能使用这个文件重写稍后将被 LÖVE '启动' 脚本调用的 love.conf 函数。利用 love.conf 函数, 可以设置一些配置选项和改变一些设置,诸如窗口默认尺寸,要加载哪些模块及其它的一些设置。

love.conf

love.conf 函数有一个参数:一个填满所有默认数值的表,并且你可以根据喜好更改这些参数。例如,想更改默认的屏幕尺寸:

function love.conf(t)
    t.screen.width = 1024
    t.screen.height = 768
end

如果不需要物理模块或手柄模块,就这么写

function love.conf(t)
    t.modules.joystick = false
    t.modules.physics = false
end

在发行游戏时,把不需要的模块设置为false是一件值得鼓励的事。这将减不启动时间(稍微的)和减少内存占用(稍微的)。

下面是一个所有选项以及它们的缺省值列表:

 
function love.conf(t)
    t.title = "Untitled"        -- The title of the window the game is in (string)
    t.author = "Unnamed"        -- The author of the game (string)
    t.identity = nil            -- The name of the save directory (string)
    t.version = 0               -- The LÖVE version this game was made for (number)
    t.console = false           -- Attach a console (boolean, Windows only)
    t.screen.width = 800        -- The window width (number)
    t.screen.height = 600       -- The window height (number)
    t.screen.fullscreen = false -- Enable fullscreen (boolean)
    t.screen.vsync = true       -- Enable vertical sync (boolean)
    t.screen.fsaa = 0           -- The number of FSAA-buffers (number)
    t.modules.joystick = true   -- Enable the joystick module (boolean)
    t.modules.audio = true      -- Enable the audio module (boolean)
    t.modules.keyboard = true   -- Enable the keyboard module (boolean)
    t.modules.event = true      -- Enable the event module (boolean)
    t.modules.image = true      -- Enable the image module (boolean)
    t.modules.graphics = true   -- Enable the graphics module (boolean)
    t.modules.timer = true      -- Enable the timer module (boolean)
    t.modules.mouse = true      -- Enable the mouse module (boolean)
    t.modules.sound = true      -- Enable the sound module (boolean)
    t.modules.physics = true    -- Enable the physics module (boolean)
end

注意,不能禁止love.filesystem; 他是被强制使用的。同样对 love 模块本身也是如此。

Other Languages