Update README.md

This commit is contained in:
pyral 2024-12-03 13:28:24 -05:00
parent ad6d0e6d23
commit b0de07fda8

View File

@ -38,8 +38,8 @@ var message:String = vfiler.load_supported("file.txt")
# Need to load multiple zip files that can let you check each for a single file and return the first instance found? # Need to load multiple zip files that can let you check each for a single file and return the first instance found?
var vfiler:VFileAccess = VFileAccess.CREATE.create_readonly_zip_access("./gamer.zip") var vfiler:VFileAccess = VFileAccess.CREATE.create_bulk_readonly_zip_access(["mods/mod.zip","./gamer.zip"])
var message:String = vfiler.load_supported("file.txt") var message:String = vfiler.load_supported("file.txt") # first zip to contain this will return, null otherwise.
``` ```
# Adding supported file extensions. # Adding supported file extensions.