Difference between revisions of "love.filedropped"
Line 1: | Line 1: | ||
− | {{newin | + | {{newin|[[0.10.0]]|100|type=function}} |
− | + | Callback function triggered when a file is dragged and dropped onto the window. | |
− | == | + | == Function == |
− | === | + | === Synopsis === |
<source lang="lua"> | <source lang="lua"> | ||
love.filedropped( file ) | love.filedropped( file ) | ||
</source> | </source> | ||
− | === | + | === Arguments === |
− | {{param | + | {{param|DroppedFile|file|The unopened File object representing the file that was dropped.}} |
− | === | + | === Returns === |
− | + | Nothing. | |
− | == | + | == Examples == |
− | + | Read and print the file, drag-and-dropped to love window using [[(File):read]] and [[(File):getFilename]]. | |
<source lang="lua"> | <source lang="lua"> | ||
function love.filedropped(file) | function love.filedropped(file) | ||
Line 22: | Line 22: | ||
</source> | </source> | ||
− | == | + | == Notes == |
− | + | [[(File):open|File:open]] must be called on the file before reading from or writing to it. [[(File):getFilename|File:getFilename]] will return the full platform-dependent path to the file. | |
− | == | + | == See Also == |
− | * [[parent::love | + | * [[parent::love]] |
− | * | + | * [[love.directorydropped]] |
[[Category:Callbacks]] | [[Category:Callbacks]] | ||
− | {{#set:Description= | + | {{#set:Description=Callback function triggered when a file is dragged and dropped onto the window.}} |
{{#set:Subcategory=Window}} | {{#set:Subcategory=Window}} | ||
− | + | == Other Languages == | |
− | = | ||
{{i18n|love.filedropped}} | {{i18n|love.filedropped}} |
Revision as of 12:55, 16 February 2020
Available since LÖVE 0.10.0 |
This function is not supported in earlier versions. |
Callback function triggered when a file is dragged and dropped onto the window.
Contents
Function
Synopsis
love.filedropped( file )
Arguments
DroppedFile file
- The unopened File object representing the file that was dropped.
Returns
Nothing.
Examples
Read and print the file, drag-and-dropped to love window using (File):read and (File):getFilename.
function love.filedropped(file)
file:open("r")
local data = file:read()
print("Content of " .. file:getFilename() .. ' is')
print(data)
print("End of file")
end
Notes
File:open must be called on the file before reading from or writing to it. File:getFilename will return the full platform-dependent path to the file.
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