Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

save a string as file to drive appscript

1
2
3
4
5
6
7
8
9
public class AsyncExample : MonoBehaviour
{
    async void Start()
    {
        Debug.Log("Waiting 1 second...");
        await Task.Delay(TimeSpan.FromSeconds(1));
        Debug.Log("Done!");
    }
}
Source by www.stevevermeulen.com #
 
PREVIOUS NEXT
Tagged: #save #string #file #drive #appscript
ADD COMMENT
Topic
Name
9+6 =