C# 클래스 GoogleSheetsLoader, GoogleSheetsBackEndExample

The class allows you to load a Google Sheet from Drive in CSV format. It parses it and fires an event when it's done. Note: This implementation will only work for sheets in the format: _____________________________ | name | value | |___________|_______________| | .... | ..... | To support a different format change the ParseSheetData method
상속: MonoBehaviour
파일 보기 프로젝트 열기: JellyButtonGames/GoogleSheetsBackEndExample 1 사용 예제들

공개 메소드들

메소드 설명
LoadSheet ( ) : void

Starts loading the sheet from Google

비공개 메소드들

메소드 설명
ApplyDataFromRow ( string paramName, object paramValue ) : void

Stores the loaded parameter configuration locally

LoadGoogleSheet ( string docId, string sheetId ) : IEnumerator

a Coroutine which downloads the Google Sheet in CSV format and parses it on success

ParseSheetData ( string csvData ) : void

Parses the downloaded CSV formatted Google Sheet

메소드 상세

LoadSheet() 공개 메소드

Starts loading the sheet from Google
public LoadSheet ( ) : void
리턴 void