Plugin functions
Storage service helps you to download dynamic content whenever you want. in the following, we will review some functions to work with storage.
Get metadata of a file
This functions get a file name and will return the file's meta information.
- Unity3D
- TypeScript
DynamicPixels.Storage.GetFileInfo(fileName: string): Promise<FileInfo>;
Download a file
This function download a file with specific name
- Unity3D
- TypeScript
DynamicPixels.Storage.Download(fileName: string, outputPath: string): Promise<void>;