-
Notifications
You must be signed in to change notification settings - Fork 1
Player Data Storage
ShAdowDev16 edited this page Apr 1, 2025
·
4 revisions
Will return a raw string of the file's content.
Arguments:
-
string FileName
The name of the file you want to retrieve. Includes file extension. -
Action<string> Callback
The callback that will contain your raw string content.
Example:
MirrorVRDataStorage.PlayerDataStorageRetrieveContent("example.txt", result => { Debug.Log(result); } );