Config Files (Українська)
Contents
- 1 Вступ
- 2 love.conf
- 3 Актуальний файл конфігурації
- 4 Flags
- 4.1 identity
- 4.2 appendidentity
- 4.3 version
- 4.4 console
- 4.5 accelerometerjoystick
- 4.6 externalstorage
- 4.7 gammacorrect
- 4.8 audio.mic
- 4.9 audio.mixwithsystem
- 4.10 window
- 4.11 window.title
- 4.12 window.icon
- 4.13 window.width & window.height
- 4.14 window.borderless
- 4.15 window.resizable
- 4.16 window.minwidth & window.minheight
- 4.17 window.fullscreen
- 4.18 window.fullscreentype
- 4.19 window.usedpiscale
- 4.20 window.vsync
- 4.21 window.depth
- 4.22 window.stencil
- 4.23 window.msaa
- 4.24 window.display
- 4.25 window.highdpi
- 4.26 window.x & window.y
- 4.27 window.fsaa
- 4.28 window.srgb
- 4.29 Release Mode
- 5 Older Versions
- 6 Див. також
- 7 Other Languages
Вступ
Якщо в директорії гри (або в файлі .love) є файл conf.lua
, він буде виконаний перед запуском модулів LÖVE. В цьому файлі можна перевизначити функцію love.conf
. Цю функцію потим викличе скрипт запуску LÖVE. В функції love.conf
можна вказати деякі налаштування і змінити параметри, такі як стандартний розмір вікна, включені модулі і інші речі.
love.conf
Функція love.conf
приймає один аргумент: таблицю, заповнену усіма стандартними значеннями, які можна змінити на свої. Наприклад, щоб змінити стандартний розмір вікна, зробіть так:
function love.conf(t)
t.window.width = 1024
t.window.height = 768
end
Якщо вам не потрібні модуль фізики (physics) та джойстика (joystick), зробіть наступне:
function love.conf(t)
t.modules.joystick = false
t.modules.physics = false
end
Рекомендується присвоювати невикористаним модулям false в готових версіях своєї гри. Це може трошки зменшити час загрузки (особлико явщо відключити модуль джойстика) та зменшує потрібну пам'ять (незначно).
Зверніть увагу, що відключити love.filesystem не можна; це обов'язковий модуль. Це ж стосується самого модуля love. Модуль love.graphics (англ.) потребує, щоб був включеним модуль love.window (англ.).
Якщо в LÖVE 0.9.2 та попередніх версіях в файлі конфігурації були помилки, то гра не запускалася, і не з'являлося ніякого повідомлення. Якщо гра не запускається, спочатку перевірте, чи немає помилок в файлі конфігурації. В версії 0.10.2 та новіше помилки конфігурації показуються на синьому екрані, в якому показаний код, де відбулася помилка.
Актуальний файл конфігурації
Ось повний список опцій і їх стандартних значень в LÖVE 11.3:
function love.conf(t)
t.identity = nil -- Назва директорії для збережених ігор (string / рядок)
t.appendidentity = false -- Чи шукати файли в директорії з кодом гри перед файлами в директорії збережених ігор (boolean / логічна)
t.version = "11.3" -- Версія LÖVE, для якої була зроблена гра (string / рядок)
t.console = false -- Чи додати консоль (boolean / логічна, тільки для Windows)
t.accelerometerjoystick = true -- Чи включити акселерометр на iOS та Android як джойстик (boolean / логічна)
t.externalstorage = false -- Якщо true, файли збержених ігор на Android будуть записуватися на зовнішньому дисковому просторі, і читатися звідти (boolean / логічна)
t.gammacorrect = false -- Чи включати корекцію гами, якщо система її підтримує (boolean / логічна)
t.audio.mic = false -- Робити запит дозволу та використовувати мікрофон на Android (boolean / логічна)
t.audio.mixwithsystem = true -- Чи залишити фонову музику активною, коли LÖVE відкривається (boolean / логічна, тільки iOS і Android)
t.window.title = "Untitled" -- The window title (string)
t.window.icon = nil -- Filepath to an image to use as the window's icon (string)
t.window.width = 800 -- The window width (number)
t.window.height = 600 -- The window height (number)
t.window.borderless = false -- Remove all border visuals from the window (boolean)
t.window.resizable = false -- Let the window be user-resizable (boolean)
t.window.minwidth = 1 -- Minimum window width if the window is resizable (number)
t.window.minheight = 1 -- Minimum window height if the window is resizable (number)
t.window.fullscreen = false -- Enable fullscreen (boolean)
t.window.fullscreentype = "desktop" -- Choose between "desktop" fullscreen or "exclusive" fullscreen mode (string)
t.window.usedpiscale = true -- Enable automatic DPI scaling (boolean)
t.window.vsync = 1 -- Vertical sync mode (number)
t.window.msaa = 0 -- The number of samples to use with multi-sampled antialiasing (number)
t.window.depth = nil -- The number of bits per sample in the depth buffer
t.window.stencil = nil -- The number of bits per sample in the stencil buffer
t.window.display = 1 -- Index of the monitor to show the window in (number)
t.window.highdpi = false -- Enable high-dpi mode for the window on a Retina display (boolean)
t.window.x = nil -- The x-coordinate of the window's position in the specified display (number)
t.window.y = nil -- The y-coordinate of the window's position in the specified display (number)
t.modules.audio = true -- Enable the audio module (boolean)
t.modules.data = true -- Enable the data module (boolean)
t.modules.event = true -- Enable the event module (boolean)
t.modules.font = true -- Enable the font module (boolean)
t.modules.graphics = true -- Enable the graphics module (boolean)
t.modules.image = true -- Enable the image module (boolean)
t.modules.joystick = true -- Enable the joystick module (boolean)
t.modules.keyboard = true -- Enable the keyboard module (boolean)
t.modules.math = true -- Enable the math module (boolean)
t.modules.mouse = true -- Enable the mouse module (boolean)
t.modules.physics = true -- Enable the physics module (boolean)
t.modules.sound = true -- Enable the sound module (boolean)
t.modules.system = true -- Enable the system module (boolean)
t.modules.thread = true -- Enable the thread module (boolean)
t.modules.timer = true -- Enable the timer module (boolean), Disabling it will result 0 delta time in love.update
t.modules.touch = true -- Enable the touch module (boolean)
t.modules.video = true -- Enable the video module (boolean)
t.modules.window = true -- Enable the window module (boolean)
end
Flags
identity
This flag determines the name of the save directory for your game. Note that you can only specify the name, not the location where it will be created:
t.identity = "gabe_HL3" -- Correct
t.identity = "c:/Users/gabe/HL3" -- Incorrect
Alternatively love.filesystem.setIdentity can be used to set the save directory outside of the config file.
appendidentity
Доступне починаючи з LÖVE 11.0 |
Ця опція недоступна в попередніх версіях. |
This flag determines if game directory should be searched first then save directory (true
) or otherwise (false
)
version
Доступне починаючи з LÖVE 0.8.0 |
Ця опція недоступна в попередніх версіях. |
t.version
should be a string, representing the version of LÖVE for which your game was made.
Before 11.0, it should be formatted as "X.Y.Z"
where X
is the major release number, Y
the minor, and Z
the patch level. Since 11.0, it should be formatted as "X.Y"
where X
and Y
are the major and minor release respectively.
If set in the config file of the game, LÖVE will display a warning if the game isn't compatible with the current version of LÖVE being used to run the game. Its default is the version of LÖVE running.
console
Determines whether a console should be opened alongside the game window (Windows only) or not. Note: On OSX you can get console output by running LÖVE through the terminal, or on Windows with LÖVE 0.10.2, by running lovec.exe
instead of love.exe
.
accelerometerjoystick
Доступне починаючи з LÖVE 0.10.0 |
Ця опція недоступна в попередніх версіях. |
Sets whether the device accelerometer on iOS and Android should be exposed as a 3-axis Joystick. Disabling the accelerometer when it's not used may reduce CPU usage.
externalstorage
Доступне починаючи з LÖVE 0.10.1 |
Ця опція недоступна в попередніх версіях. |
Sets whether files are saved in external storage (true) or internal storage (false) on Android.
gammacorrect
Доступне починаючи з LÖVE 0.10.0 |
Ця опція недоступна в попередніх версіях. |
Determines whether gamma-correct rendering is enabled, when the system supports it.
audio.mic
Доступне починаючи з LÖVE 11.3 |
Ця опція недоступна в попередніх версіях. |
Request microphone permission from the user. When user allows it, love.audio.getRecordingDevices will lists recording devices available. Otherwise, love.audio.getRecordingDevices returns empty table and a message is shown to inform user when called.
audio.mixwithsystem
Доступне починаючи з LÖVE 11.0 |
Ця опція недоступна в попередніх версіях. |
Sets whether background audio / music from other apps should play while LÖVE is open. See love.system.hasBackgroundMusic for more details.
window
Доступне починаючи з LÖVE 0.9.0 |
Ці flags недоступні в попередніх версіях. |
It is possible to defer window creation until love.window.setMode is first called in your code. To do so, set t.window = nil
in love.conf (or t.screen = nil
in older versions.) If this is done, LÖVE may crash if any function from love.graphics is called before the first love.window.setMode in your code.
The t.window
table was named t.screen
in versions prior to 0.9.0. The t.screen
table doesn't exist in love.conf in 0.9.0, and the t.window
table doesn't exist in love.conf in 0.8.0. This means love.conf will fail to execute (therefore it will fall back to default values) if care is not taken to use the correct table for the LÖVE version being used.
window.title
Доступне починаючи з LÖVE 0.9.0 |
Ця опція недоступна в попередніх версіях. |
Sets the title of the window the game is in. Alternatively love.window.setTitle can be used to change the window title outside of the config file.
window.icon
Доступне починаючи з LÖVE 0.9.0 |
Ця опція недоступна в попередніх версіях. |
A filepath to an image to use as the window's icon. Not all operating systems support very large icon images. The icon can also be changed with love.window.setIcon.
window.width & window.height
Доступне починаючи з LÖVE 0.9.0 |
Ці flags недоступні в попередніх версіях. |
Sets the window's dimensions. If these flags are set to 0 LÖVE automatically uses the user's desktop dimensions.
window.borderless
Доступне починаючи з LÖVE 0.9.0 |
Ця опція недоступна в попередніх версіях. |
Removes all border visuals from the window. Note that the effects may wary between operating systems.
window.resizable
Доступне починаючи з LÖVE 0.9.0 |
Ця опція недоступна в попередніх версіях. |
If set to true this allows the user to resize the game's window.
window.minwidth & window.minheight
Доступне починаючи з LÖVE 0.9.0 |
Ці flags недоступні в попередніх версіях. |
Sets the minimum width and height for the game's window if it can be resized by the user. If you set lower values to window.width
and window.height
LÖVE will always favor the minimum dimensions set via window.minwidth
and window.minheight
.
window.fullscreen
Доступне починаючи з LÖVE 0.9.0 |
Ця опція недоступна в попередніх версіях. |
Wether to run the game in fullscreen (true
) or windowed (false
) mode. The fullscreen can also be toggled via love.window.setFullscreen or love.window.setMode.
window.fullscreentype
Доступне починаючи з LÖVE 0.9.0 |
Ця опція недоступна в попередніх версіях. |
Specifies the type of fullscreen mode to use (exclusive
or desktop
). Generally the desktop
is recommended, as it is less restrictive than exclusive
mode on some operating systems. (Note: In 0.9.2 and earlier, use normal
instead of exclusive
.)
window.usedpiscale
Доступне починаючи з LÖVE 11.3 |
Ця опція недоступна в попередніх версіях. |
Sets whetever to enable or disable automatic DPI scaling.
window.vsync
Доступне починаючи з LÖVE 0.9.0 |
Ця опція недоступна в попередніх версіях. |
Enables or deactivates vertical synchronization. Vsync tries to keep the game at a steady framerate and can prevent issues like screen tearing. It is recommended to keep vsync activated if you don't know about the possible implications of turning it off. Before LÖVE 11.0, this value was boolean (true
or false
). Since LÖVE 11.0, this value is number (1 to enable vsync, 0 to disable vsync, -1 to use adaptive vsync when supported).
Note that in iOS, vertical synchronization is always enabled and cannot be changed.
window.depth
Доступне починаючи з LÖVE 11.0 |
Ця опція недоступна в попередніх версіях. |
The number of bits per sample in the depth buffer (16/24/32, default nil
)
window.stencil
Доступне починаючи з LÖVE 11.0 |
Ця опція недоступна в попередніх версіях. |
Then number of bits per sample in the stencil buffer (generally 8, default nil
)
window.msaa
Доступне починаючи з LÖVE 0.9.2 |
Ця опція недоступна в попередніх версіях. |
The number of samples to use with multi-sampled antialiasing.
window.display
Доступне починаючи з LÖVE 0.9.0 |
Ця опція недоступна в попередніх версіях. |
The index of the display to show the window in, if multiple monitors are available.
window.highdpi
Доступне починаючи з LÖVE 0.9.1 |
Ця опція недоступна в попередніх версіях. |
See love.window.getPixelScale, love.window.toPixels, and love.window.fromPixels. It is recommended to keep this option disabled if you can't test your game on a Mac or iOS system with a Retina display, because code will need tweaking to make sure things look correct.
Please note that since 11.0, high DPI is always enabled in Android regardless of this flag!
window.x & window.y
Доступне починаючи з LÖVE 0.9.2 |
Ці flags недоступні в попередніх версіях. |
Determines the position of the window on the user's screen. Alternatively love.window.setPosition can be used to change the position on the fly.
window.fsaa
Доступне з LÖVE 0.9.0 і видалене в LÖVE 0.10.0 |
This flag has been replaced by the window.msaa flag. |
The number of samples to use with multi-sampled antialiasing.
window.srgb
Доступне з LÖVE 0.9.1 і видалене в LÖVE 0.10.0 |
This flag has been replaced by the gammacorrect flag. |
Enabling this window flag will automatically convert the colors of everything drawn to the main screen from the linear RGB colorspace to the sRGB colorspace - the window's surface is treated as gamma-space sRGB. This is only one component of gamma-correct rendering, an advanced topic which is easy to mess up, so it's recommended to keep this option disabled if you're not sure about its implications.
Release Mode
Доступне з LÖVE 0.8.0 і видалене в LÖVE 0.9.0 |
Ця опція недоступна в попередніх або наступних версіях.. |
If t.release
is enabled, LÖVE uses the release error handler, which is sparse on information by default, and can, of course, be overridden.
The default release mode error handler also outputs a message to the player informing them to contact the author using the values title, author and url as specified in conf.lua.
When a fused game in release mode is run it will not save in the love save dir, but rather one for itself, whereas previously it would be %APPDATA%\\LOVE\\game on Windows, it now is %APPDATA%\\game. This concept applies to other platforms as well.
Older Versions
Here is a full list of options and their default values for LÖVE 11.0 until 11.2:
function love.conf(t)
t.identity = nil -- Назва директорії для збережених ігор (string / рядок)
t.appendidentity = false -- Чи шукати файли в директорії з кодом гри перед файлами в директорії збережених ігор (boolean / логічна)
t.version = "11.0" -- Версія LÖVE, для якої була зроблена гра (string / рядок)
t.console = false -- Чи додати консоль (boolean / логічна, тільки для Windows)
t.accelerometerjoystick = true -- Чи включити акселерометр на iOS та Android як джойстик (boolean / логічна)
t.externalstorage = false -- Якщо true, файли збержених ігор на Android будуть записуватися на зовнішньому дисковому просторі, і читатися звідти (boolean / логічна)
t.gammacorrect = false -- Чи включати корекцію гами, якщо система її підтримує (boolean / логічна)
t.audio.mixwithsystem = true -- Чи залишити фонову музику активною, коли LÖVE відкривається (boolean / логічна, тільки iOS і Android)
t.window.title = "Untitled" -- The window title (string)
t.window.icon = nil -- Filepath to an image to use as the window's icon (string)
t.window.width = 800 -- The window width (number)
t.window.height = 600 -- The window height (number)
t.window.borderless = false -- Remove all border visuals from the window (boolean)
t.window.resizable = false -- Let the window be user-resizable (boolean)
t.window.minwidth = 1 -- Minimum window width if the window is resizable (number)
t.window.minheight = 1 -- Minimum window height if the window is resizable (number)
t.window.fullscreen = false -- Enable fullscreen (boolean)
t.window.fullscreentype = "desktop" -- Choose between "desktop" fullscreen or "exclusive" fullscreen mode (string)
t.window.vsync = 1 -- Vertical sync mode (number)
t.window.msaa = 0 -- The number of samples to use with multi-sampled antialiasing (number)
t.window.depth = nil -- The number of bits per sample in the depth buffer
t.window.stencil = nil -- The number of bits per sample in the stencil buffer
t.window.display = 1 -- Index of the monitor to show the window in (number)
t.window.highdpi = false -- Enable high-dpi mode for the window on a Retina display (boolean)
t.window.x = nil -- The x-coordinate of the window's position in the specified display (number)
t.window.y = nil -- The y-coordinate of the window's position in the specified display (number)
t.modules.audio = true -- Enable the audio module (boolean)
t.modules.data = true -- Enable the data module (boolean)
t.modules.event = true -- Enable the event module (boolean)
t.modules.font = true -- Enable the font module (boolean)
t.modules.graphics = true -- Enable the graphics module (boolean)
t.modules.image = true -- Enable the image module (boolean)
t.modules.joystick = true -- Enable the joystick module (boolean)
t.modules.keyboard = true -- Enable the keyboard module (boolean)
t.modules.math = true -- Enable the math module (boolean)
t.modules.mouse = true -- Enable the mouse module (boolean)
t.modules.physics = true -- Enable the physics module (boolean)
t.modules.sound = true -- Enable the sound module (boolean)
t.modules.system = true -- Enable the system module (boolean)
t.modules.thread = true -- Enable the thread module (boolean)
t.modules.timer = true -- Enable the timer module (boolean), Disabling it will result 0 delta time in love.update
t.modules.touch = true -- Enable the touch module (boolean)
t.modules.video = true -- Enable the video module (boolean)
t.modules.window = true -- Enable the window module (boolean)
end
Here is a full list of options and their default values for LÖVE 0.10.1 and 0.10.2:
function love.conf(t)
t.identity = nil -- Назва директорії для збережених ігор (string / рядок)
t.version = "0.10.2" -- Версія LÖVE, для якої була зроблена гра (string / рядок)
t.console = false -- Чи додати консоль (boolean / логічна, тільки для Windows)
t.accelerometerjoystick = true -- Чи включити акселерометр на iOS та Android як джойстик (boolean / логічна)
t.externalstorage = false -- Якщо true, файли збержених ігор на Android будуть записуватися на зовнішньому дисковому просторі, і читатися звідти (boolean / логічна)
t.gammacorrect = false -- Чи включати корекцію гами, якщо система її підтримує (boolean / логічна)
t.window.title = "Untitled" -- The window title (string)
t.window.icon = nil -- Filepath to an image to use as the window's icon (string)
t.window.width = 800 -- The window width (number)
t.window.height = 600 -- The window height (number)
t.window.borderless = false -- Remove all border visuals from the window (boolean)
t.window.resizable = false -- Let the window be user-resizable (boolean)
t.window.minwidth = 1 -- Minimum window width if the window is resizable (number)
t.window.minheight = 1 -- Minimum window height if the window is resizable (number)
t.window.fullscreen = false -- Enable fullscreen (boolean)
t.window.fullscreentype = "desktop" -- Choose between "desktop" fullscreen or "exclusive" fullscreen mode (string)
t.window.vsync = true -- Enable vertical sync (boolean)
t.window.msaa = 0 -- The number of samples to use with multi-sampled antialiasing (number)
t.window.display = 1 -- Index of the monitor to show the window in (number)
t.window.highdpi = false -- Enable high-dpi mode for the window on a Retina display (boolean)
t.window.x = nil -- The x-coordinate of the window's position in the specified display (number)
t.window.y = nil -- The y-coordinate of the window's position in the specified display (number)
t.modules.audio = true -- Enable the audio module (boolean)
t.modules.event = true -- Enable the event module (boolean)
t.modules.graphics = true -- Enable the graphics module (boolean)
t.modules.image = true -- Enable the image module (boolean)
t.modules.joystick = true -- Enable the joystick module (boolean)
t.modules.keyboard = true -- Enable the keyboard module (boolean)
t.modules.math = true -- Enable the math module (boolean)
t.modules.mouse = true -- Enable the mouse module (boolean)
t.modules.physics = true -- Enable the physics module (boolean)
t.modules.sound = true -- Enable the sound module (boolean)
t.modules.system = true -- Enable the system module (boolean)
t.modules.timer = true -- Enable the timer module (boolean), Disabling it will result 0 delta time in love.update
t.modules.touch = true -- Enable the touch module (boolean)
t.modules.video = true -- Enable the video module (boolean)
t.modules.window = true -- Enable the window module (boolean)
t.modules.thread = true -- Enable the thread module (boolean)
end
Here is a full list of options and their default values for LÖVE 0.10.0:
function love.conf(t)
t.identity = nil -- Назва директорії для збережених ігор (string / рядок)
t.version = "0.10.0" -- Версія LÖVE, для якої була зроблена гра (string / рядок)
t.console = false -- Чи додати консоль (boolean / логічна, тільки для Windows)
t.accelerometerjoystick = true -- Чи включити акселерометр на iOS та Android як джойстик (boolean / логічна)
t.gammacorrect = false -- Чи включати корекцію гами, якщо система її підтримує (boolean / логічна)
t.window.title = "Untitled" -- The window title (string)
t.window.icon = nil -- Filepath to an image to use as the window's icon (string)
t.window.width = 800 -- The window width (number)
t.window.height = 600 -- The window height (number)
t.window.borderless = false -- Remove all border visuals from the window (boolean)
t.window.resizable = false -- Let the window be user-resizable (boolean)
t.window.minwidth = 1 -- Minimum window width if the window is resizable (number)
t.window.minheight = 1 -- Minimum window height if the window is resizable (number)
t.window.fullscreen = false -- Enable fullscreen (boolean)
t.window.fullscreentype = "desktop" -- Choose between "desktop" fullscreen or "exclusive" fullscreen mode (string)
t.window.vsync = true -- Enable vertical sync (boolean)
t.window.msaa = 0 -- The number of samples to use with multi-sampled antialiasing (number)
t.window.display = 1 -- Index of the monitor to show the window in (number)
t.window.highdpi = false -- Enable high-dpi mode for the window on a Retina display (boolean)
t.window.x = nil -- The x-coordinate of the window's position in the specified display (number)
t.window.y = nil -- The y-coordinate of the window's position in the specified display (number)
t.modules.audio = true -- Enable the audio module (boolean)
t.modules.event = true -- Enable the event module (boolean)
t.modules.graphics = true -- Enable the graphics module (boolean)
t.modules.image = true -- Enable the image module (boolean)
t.modules.joystick = true -- Enable the joystick module (boolean)
t.modules.keyboard = true -- Enable the keyboard module (boolean)
t.modules.math = true -- Enable the math module (boolean)
t.modules.mouse = true -- Enable the mouse module (boolean)
t.modules.physics = true -- Enable the physics module (boolean)
t.modules.sound = true -- Enable the sound module (boolean)
t.modules.system = true -- Enable the system module (boolean)
t.modules.timer = true -- Enable the timer module (boolean), Disabling it will result 0 delta time in love.update
t.modules.touch = true -- Enable the touch module (boolean)
t.modules.video = true -- Enable the video module (boolean)
t.modules.window = true -- Enable the window module (boolean)
t.modules.thread = true -- Enable the thread module (boolean)
end
Here is a full list of options and their default values for LÖVE 0.9.2:
function love.conf(t)
t.identity = nil -- Назва директорії для збережених ігор (string / рядок)
t.version = "0.9.2" -- Версія LÖVE, для якої була зроблена гра (string / рядок)
t.console = false -- Чи додати консоль (boolean / логічна, тільки для Windows)
t.window.title = "Untitled" -- The window title (string)
t.window.icon = nil -- Filepath to an image to use as the window's icon (string)
t.window.width = 800 -- The window width (number)
t.window.height = 600 -- The window height (number)
t.window.borderless = false -- Remove all border visuals from the window (boolean)
t.window.resizable = false -- Let the window be user-resizable (boolean)
t.window.minwidth = 1 -- Minimum window width if the window is resizable (number)
t.window.minheight = 1 -- Minimum window height if the window is resizable (number)
t.window.fullscreen = false -- Enable fullscreen (boolean)
t.window.fullscreentype = "normal" -- Choose between "normal" fullscreen or "desktop" fullscreen mode (string)
t.window.vsync = true -- Enable vertical sync (boolean)
t.window.fsaa = 0 -- The number of samples to use with multi-sampled antialiasing (number)
t.window.display = 1 -- Index of the monitor to show the window in (number)
t.window.highdpi = false -- Enable high-dpi mode for the window on a Retina display (boolean)
t.window.srgb = false -- Enable sRGB gamma correction when drawing to the screen (boolean)
t.window.x = nil -- The x-coordinate of the window's position in the specified display (number)
t.window.y = nil -- The y-coordinate of the window's position in the specified display (number)
t.modules.audio = true -- Enable the audio module (boolean)
t.modules.event = true -- Enable the event module (boolean)
t.modules.graphics = true -- Enable the graphics module (boolean)
t.modules.image = true -- Enable the image module (boolean)
t.modules.joystick = true -- Enable the joystick module (boolean)
t.modules.keyboard = true -- Enable the keyboard module (boolean)
t.modules.math = true -- Enable the math module (boolean)
t.modules.mouse = true -- Enable the mouse module (boolean)
t.modules.physics = true -- Enable the physics module (boolean)
t.modules.sound = true -- Enable the sound module (boolean)
t.modules.system = true -- Enable the system module (boolean)
t.modules.timer = true -- Enable the timer module (boolean), Disabling it will result 0 delta time in love.update
t.modules.window = true -- Enable the window module (boolean)
t.modules.thread = true -- Enable the thread module (boolean)
end
Here is a full list of options and their default values for LÖVE 0.9.1:
function love.conf(t)
t.identity = nil -- Назва директорії для збережених ігор (string / рядок)
t.version = "0.9.1" -- Версія LÖVE, для якої була зроблена гра (string / рядок)
t.console = false -- Чи додати консоль (boolean / логічна, тільки для Windows)
t.window.title = "Untitled" -- The window title (string)
t.window.icon = nil -- Filepath to an image to use as the window's icon (string)
t.window.width = 800 -- The window width (number)
t.window.height = 600 -- The window height (number)
t.window.borderless = false -- Remove all border visuals from the window (boolean)
t.window.resizable = false -- Let the window be user-resizable (boolean)
t.window.minwidth = 1 -- Minimum window width if the window is resizable (number)
t.window.minheight = 1 -- Minimum window height if the window is resizable (number)
t.window.fullscreen = false -- Enable fullscreen (boolean)
t.window.fullscreentype = "normal" -- Standard fullscreen or desktop fullscreen mode (string)
t.window.vsync = true -- Enable vertical sync (boolean)
t.window.fsaa = 0 -- The number of samples to use with multi-sampled antialiasing (number)
t.window.display = 1 -- Index of the monitor to show the window in (number)
t.window.highdpi = false -- Enable high-dpi mode for the window on a Retina display (boolean)
t.window.srgb = false -- Enable sRGB gamma correction when drawing to the screen (boolean)
t.modules.audio = true -- Enable the audio module (boolean)
t.modules.event = true -- Enable the event module (boolean)
t.modules.graphics = true -- Enable the graphics module (boolean)
t.modules.image = true -- Enable the image module (boolean)
t.modules.joystick = true -- Enable the joystick module (boolean)
t.modules.keyboard = true -- Enable the keyboard module (boolean)
t.modules.math = true -- Enable the math module (boolean)
t.modules.mouse = true -- Enable the mouse module (boolean)
t.modules.physics = true -- Enable the physics module (boolean)
t.modules.sound = true -- Enable the sound module (boolean)
t.modules.system = true -- Enable the system module (boolean)
t.modules.timer = true -- Enable the timer module (boolean)
t.modules.window = true -- Enable the window module (boolean)
t.modules.thread = true -- Enable the thread module (boolean)
end
Here is a full list of options and their default values for LÖVE 0.9.0:
function love.conf(t)
t.identity = nil -- Назва директорії для збережених ігор (string / рядок)
t.version = "0.9.0" -- Версія LÖVE, для якої була зроблена гра (string / рядок)
t.console = false -- Чи додати консоль (boolean / логічна, тільки для Windows)
t.window.title = "Untitled" -- The window title (string)
t.window.icon = nil -- Filepath to an image to use as the window's icon (string)
t.window.width = 800 -- The window width (number)
t.window.height = 600 -- The window height (number)
t.window.borderless = false -- Remove all border visuals from the window (boolean)
t.window.resizable = false -- Let the window be user-resizable (boolean)
t.window.minwidth = 1 -- Minimum window width if the window is resizable (number)
t.window.minheight = 1 -- Minimum window height if the window is resizable (number)
t.window.fullscreen = false -- Enable fullscreen (boolean)
t.window.fullscreentype = "normal" -- Standard fullscreen or desktop fullscreen mode (string)
t.window.vsync = true -- Enable vertical sync (boolean)
t.window.fsaa = 0 -- The number of samples to use with multi-sampled antialiasing (number)
t.window.display = 1 -- Index of the monitor to show the window in (number)
t.modules.audio = true -- Enable the audio module (boolean)
t.modules.event = true -- Enable the event module (boolean)
t.modules.graphics = true -- Enable the graphics module (boolean)
t.modules.image = true -- Enable the image module (boolean)
t.modules.joystick = true -- Enable the joystick module (boolean)
t.modules.keyboard = true -- Enable the keyboard module (boolean)
t.modules.math = true -- Enable the math module (boolean)
t.modules.mouse = true -- Enable the mouse module (boolean)
t.modules.physics = true -- Enable the physics module (boolean)
t.modules.sound = true -- Enable the sound module (boolean)
t.modules.system = true -- Enable the system module (boolean)
t.modules.timer = true -- Enable the timer module (boolean)
t.modules.window = true -- Enable the window module (boolean)
t.modules.thread = true -- Enable the thread module (boolean)
end
Here is a full list of options and their default values for LÖVE 0.8.0:
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.url = nil -- The website of the game (string)
t.identity = nil -- Назва директорії для збережених ігор (string / рядок)
t.version = "0.8.0" -- Версія LÖVE, для якої була зроблена гра (string / рядок)
t.console = false -- Чи додати консоль (boolean / логічна, тільки для Windows)
t.release = false -- Enable release mode (boolean)
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 MSAA samples (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)
t.modules.thread = true -- Enable the thread module (boolean)
end
Here is a full list of options and their default values for LÖVE 0.7.2 and earlier:
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 -- Назва директорії для збережених ігор (string / рядок)
t.version = 0 -- The LÖVE version this game was made for (number)
t.console = false -- Чи додати консоль (boolean / логічна, тільки для Windows)
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 MSAA samples (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
Див. також
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info