Description
The CacheToDisk
property of the ResourceGenerator
class determines whether the generated resource should be stored on disk. This is useful in scenarios where resource generation is time-consuming, or when the generator will not be included with the final game distribution. Additionally, it is beneficial if the resource depends on data that will not be available in the shipped game.
Usage
To use the CacheToDisk
property, set it to true
if you want the generated resource to be saved to disk. This can help improve performance by avoiding the need to regenerate the resource each time it is needed, especially if the generation process is complex or time-consuming.
Example
// Example of using CacheToDisk property
var resourceGenerator = new ResourceGenerator();
resourceGenerator.CacheToDisk = true; // Enable caching to disk
// Proceed with resource generation
// The generated resource will be stored on disk if CacheToDisk is true