Difference between revisions of "love.directorydropped"

(Created page)
 
(Remove file argument)
Line 8: Line 8:
 
=== Arguments ===
 
=== Arguments ===
 
{{param|string|path|The full platform-dependent path to the directory. It can be used as an argument to [[love.filesystem.mount]], in order to gain read access to the directory with love.filesystem.}}
 
{{param|string|path|The full platform-dependent path to the directory. It can be used as an argument to [[love.filesystem.mount]], in order to gain read access to the directory with love.filesystem.}}
{{param|File|file|The unopened File object representing the file that was dropped.}}
 
 
=== Returns ===
 
=== Returns ===
 
Nothing.
 
Nothing.

Revision as of 13:59, 6 August 2015

Available since LÖVE 0.10.0
This function is not supported in earlier versions.

Callback function triggered when a directory is dragged and dropped onto the window.

Function

Synopsis

love.directorydropped( path )

Arguments

string path
The full platform-dependent path to the directory. It can be used as an argument to love.filesystem.mount, in order to gain read access to the directory with love.filesystem.

Returns

Nothing.

Notes

Paths passed into this callback are able to be used with love.filesystem.mount, which is the only way to get read access via love.filesystem to the dropped directory. love.filesystem.mount does not generally accept other full platform-dependent directory paths that haven't been dragged and dropped onto the window.

See Also


Other Languages