Difference between revisions of "love.filesystem.init"

m (1 revision: Imported docs from potato.)
m (Add full stop)
(6 intermediate revisions by 5 users not shown)
Line 1: Line 1:
 
+
Initializes love.filesystem, will be called internally, so should not be used explicitly.
 
 
 
== Function ==
 
== Function ==
 
=== 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 13: Line 12:
 
* [[parent::love.filesystem]]
 
* [[parent::love.filesystem]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=}}
+
{{#set:Description=Initializes love.filesystem, will be called internally, so should not be used explictly.}}
 +
{{#set:Since=000}}
 +
== Other Languages ==
 +
{{i18n|love.filesystem.init}}

Revision as of 23:03, 18 July 2016

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