Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

You can see Pixelorama's source code on GitHub. This, specifically, can be found in OpenSave.gd, in the handle_loading_files() method. https://github.com/Orama-Interactive/Pixelorama/blob/master/src/Autoload/OpenSav...

(1 edit)

I managed to do it like this:

func FilesDropped(files, screen):
    var file = File.new()
    file.open(files[0], 1)
    $FileText.text = file.get_as_text()

But i couldn't have done it without your help! Thank you!