File System #2415
-
I had an idea for my game to write to a text document with some secret stuff to scare the player, similar to DDLC, but I can't use the File system with HaxeFlixel :( I know how to READ a file with Any other way i can pull this off? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 14 replies
-
If you're making a desktop game, check out sys.io.File and sys.FileSystem. but if you're making a web game, this isn't really feasible. For something like DDLC you would include the files in your assets folder in their initial state and make changes to them as the game progresses. |
Beta Was this translation helpful? Give feedback.
If you're making a desktop game, check out sys.io.File and sys.FileSystem. but if you're making a web game, this isn't really feasible.
For something like DDLC you would include the files in your assets folder in their initial state and make changes to them as the game progresses.