An open API service indexing awesome lists of open source software.

https://github.com/midralab/uni-master-linker

Google Sheetを使ったマスターデータ管理およびUnity側のAPIクラスの自動生成およびデータオブジェクトの更新機能を持ったライブラリ
https://github.com/midralab/uni-master-linker

googlesheets masterdata unity

Last synced: about 1 year ago
JSON representation

Google Sheetを使ったマスターデータ管理およびUnity側のAPIクラスの自動生成およびデータオブジェクトの更新機能を持ったライブラリ

Awesome Lists containing this project

README

          

* [UniMasterLinker](#unimasterlinker)
* [Import Method](#import-method)
* [How to Use](#how-to-use)
* [Supported Platforms](#supported-platforms)
* [License](#license)

# UniMasterLinker
UniMasterLinker is a Unity editor extension that synchronizes master data between Google Sheets and Unity and automatically generates API classes.

Designed for game development in Unity, it offers management of master data and generation of API classes using pure C#.

[日本語版ReadMeはこちら](README_JP.md)

## Import Method
This library is provided as a UnityPackage. Download the latest `.unitypackage` file from [the release page](https://github.com/MidraLab/uni-master-liker/releases) and import it into your project.

## How to Use
1. Copy Master Data for Google Sheet from [MasterSheet](https://docs.google.com/spreadsheets/d/1KezPMdD_5XwFlmQP_AXGpJaX7qSl1HaiPVhfu0qiP48/edit?usp=sharing) to your Google Drive.

2. Use the editor window to retrieve data from Google Sheets and dynamically generate API classes. A sample usage is as follows:

```csharp
[MenuItem("UniMasterLinker/Update API Classes")]
private static async void UpdateAPIClassFile()
{
// Add implementation here
}
```

## Supported Platforms
All platforms supported by Unity are supported, as UniMasterLinker is written in pure C#.

## License
[MIT License](https://github.com/MidraLab/uni-master-liker/blob/main/LICENSE)