Tagged Questions
2
votes
2answers
197 views
In Unity, can I load a local (/Resources folder) website to safari on an ipad
In Unity, can I load a local (/Resources folder) website to safari on an ipad?
This works fine on a Mac, opening up a wepage from my Resources folder.
string path = ...
2
votes
1answer
123 views
Loading files while running game
I am curious as to what technique(s) are used to load files in while a game is running. For example, Minecraft will load chunks as you get within a certain range of them. How is this achieved without ...
5
votes
2answers
480 views
How do I prevent getting an access denied loading a file in XNA, when I have the application running in the program files directory (in Windows 7)?
I'm creating an app in XNA.
I'm trying to load a custom save file. I named the file with my own custom extension. It's an XML file serialized with the DataContractSerializer.
I've tried several ...
2
votes
3answers
298 views
Directory paths for resources and assets
If I have a file stucture for my final, released game something like:
Main folder
Media
Images
Other assets
Sounds
Executable
List item
And a different one for my 'in development' project, ...