love.directorydropped
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.
Please login to continue.