Skip to content
Kim, Hyoun Woo edited this page Mar 13, 2016 · 36 revisions

Q: Can I pull data from Google Sheets at runtime?

A: No, Unity-Quicksheet is a tool for easy handling of data at edit time. Saying with the technique point of view, all data retrieved from Excel or Google spreadsheet is stored form of an asset file as ScriptableObject derived class object to make it easy for serializing and deserializing.

Unity's ScriptableObject is not a one for persistence data which means there is no way to serialize any runtime changed data. Unity-Quicksheet is not invented for that purpose. So if the data you have can be changed at runtime and should be persistence, you should consider other thing such as json which is being for that purpose.

On the other hand, there is no reason to get data from Excel at run time on most of cases. Not likely Excel, it may useful to connect and get data at runtime from Google Drive but to keep the same interfaces with Excel, Unity-Quicksheet does not provide that for Google spreadsheet either.


Q: Can I run it on OSX of Mac machine?

A: Yes, it runs on OSX without any problems.

Clone this wiki locally