Difference between revisions of "love.load"
(Adds arg argument) |
m (→Arguments: Remove # from link text) |
||
(6 intermediate revisions by 4 users not shown) | |||
Line 3: | Line 3: | ||
=== Synopsis === | === Synopsis === | ||
<source lang="lua"> | <source lang="lua"> | ||
− | love.load( arg ) | + | love.load( arg, unfilteredArg ) |
</source> | </source> | ||
=== Arguments === | === Arguments === | ||
− | {{param|table|arg|Command line arguments given to the game.}} | + | {{param|table|arg|Command-line arguments given to the game.}} |
+ | {{New feature|11.0| | ||
+ | {{param|table|unfilteredArg|Unfiltered command-line arguments given to the executable (see [[#Notes|Notes]]).}} | ||
+ | |110}} | ||
+ | |||
=== Returns === | === Returns === | ||
Nothing. | Nothing. | ||
+ | == Notes == | ||
+ | In LÖVE 11.0, the passed arguments excludes the game name and the fused command-line flag (if exist) when runs from non-fused LÖVE executable. Previous version pass the argument as-is without any filtering. | ||
+ | == Examples == | ||
+ | Establish some variables/resources on the game load, so that they can be used repeatedly in other functions (such as [[love.draw]]). | ||
+ | |||
+ | Run love with arguments to see them displayed: ''love . --hello''. | ||
+ | <source lang="lua"> | ||
+ | local text, pos | ||
+ | |||
+ | function love.load(args) | ||
+ | local msg = args[1] or 'no arguments' | ||
+ | text = love.graphics.newText(love.graphics.getFont(), msg) | ||
+ | pos = { | ||
+ | x = 50, | ||
+ | y = 50, | ||
+ | } | ||
+ | end | ||
+ | |||
+ | function love.update(dt) | ||
+ | if love.keyboard.isDown('right') then | ||
+ | pos.x = pos.x + 1 | ||
+ | end | ||
+ | end | ||
+ | |||
+ | function love.draw() | ||
+ | love.graphics.draw(text, pos.x, pos.y) | ||
+ | end | ||
+ | </source> | ||
+ | |||
== See Also == | == See Also == | ||
* [[parent::love]] | * [[parent::love]] | ||
[[Category:Callbacks]] | [[Category:Callbacks]] | ||
{{#set:Description=This function is called exactly once at the beginning of the game.}} | {{#set:Description=This function is called exactly once at the beginning of the game.}} | ||
+ | {{#set:Subcategory=General}} | ||
{{#set:Since=000}} | {{#set:Since=000}} | ||
== Other Languages == | == Other Languages == | ||
{{i18n|love.load}} | {{i18n|love.load}} |
Latest revision as of 14:32, 11 July 2022
This function is called exactly once at the beginning of the game.
Contents
Function
Synopsis
love.load( arg, unfilteredArg )
Arguments
table arg
- Command-line arguments given to the game.
Returns
Nothing.
Notes
In LÖVE 11.0, the passed arguments excludes the game name and the fused command-line flag (if exist) when runs from non-fused LÖVE executable. Previous version pass the argument as-is without any filtering.
Examples
Establish some variables/resources on the game load, so that they can be used repeatedly in other functions (such as love.draw).
Run love with arguments to see them displayed: love . --hello.
local text, pos
function love.load(args)
local msg = args[1] or 'no arguments'
text = love.graphics.newText(love.graphics.getFont(), msg)
pos = {
x = 50,
y = 50,
}
end
function love.update(dt)
if love.keyboard.isDown('right') then
pos.x = pos.x + 1
end
end
function love.draw()
love.graphics.draw(text, pos.x, pos.y)
end
See Also
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