You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Load dropped filepaths
Parameters
None.
Return value
Condition
Return Value
(always)
list
Notes
Example
if raylib.IsFileDropped then
dropped = raylib.LoadDroppedFiles
for i in range(0, dropped.count - 1)
print "Dropped: " + dropped.paths[i]
end for
raylib.UnloadDroppedFiles dropped
end if