Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/valryon/notion-unity

Notion parser in Unity
https://github.com/valryon/notion-unity

notion notion-api unity3d

Last synced: about 2 months ago
JSON representation

Notion parser in Unity

Awesome Lists containing this project

README

        

# notion-unity: a Notion database parser for Unity3D

Download Notion databases directly in Unity!

## Required Packages

- [UniTask](https://github.com/Cysharp/UniTask) (can be replaced by coroutines)
- [JSON.NET for Unity](https://github.com/jilleJr/Newtonsoft.Json-for-Unity) (mandatory)

## Usage

```csharp
var result = await NotionDownloader.GetTableAsync(databaseID);
foreach(var line in result.Lines)
{
var cell = line.Get("Name");
}
```