로딩
티스토리 데이터 처리 중입니다.

유니티 C# 구글 스프레드 시트 Google Sheet 간단 사용법

 유니티 C# 구글 스프레드 시트 Google Sheet 간단 사용법

코드 작성 using System.Collections; using System.Collections.Generic; using System.IO; using UnityEngine; using UnityEngine.Networking; public class Example : MonoBehaviour { const string DownloadURL = "https://docs.google.com/spreadsheets/d/" + "주소 Id 값" + "/export?format=tsv&gid=0"; void Awake() { StartCoroutine(DownloadFile()); } IEnumerator DownloadFile() { Debug.Log("File Downloading..."); Unit.....