Difference between revisions of "love.filesystem.init"

m (Fixed typo)
 
(2 intermediate revisions by 2 users not shown)
Line 3: Line 3:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
love.filesystem.init( )
+
love.filesystem.init( appname )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
None.
+
{{param|string|appname|The name of the application binary, typically <code>love</code>.}}
 
=== Returns ===
 
=== Returns ===
 
Nothing.
 
Nothing.
Line 12: Line 12:
 
* [[parent::love.filesystem]]
 
* [[parent::love.filesystem]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=Initializes love.filesystem, will be called internally, so should not be used explictly.}}
+
{{#set:Description=Initializes love.filesystem, will be called internally, so should not be used explicitly.}}
 
{{#set:Since=000}}
 
{{#set:Since=000}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.filesystem.init}}
 
{{i18n|love.filesystem.init}}

Latest revision as of 13:01, 12 June 2021

Initializes love.filesystem, will be called internally, so should not be used explicitly.

Function

Synopsis

love.filesystem.init( appname )

Arguments

string appname
The name of the application binary, typically love.

Returns

Nothing.

See Also


Other Languages