Skip to content

raylib.UnloadDroppedFiles

JoeStrout edited this page Apr 29, 2026 · 2 revisions

Unload dropped filepaths

Parameters

Parameter Default Value Note
files

Return value

None.

Notes

Example

if raylib.IsFileDropped then
    dropped = raylib.LoadDroppedFiles
    for path in dropped.paths
        print path
    end for
    raylib.UnloadDroppedFiles dropped
end if

Clone this wiki locally