Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/valryon/notion-unity
- Owner: valryon
- License: mit
- Created: 2021-05-13T18:02:42.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-09T06:29:46.000Z (over 2 years ago)
- Last Synced: 2024-08-02T05:14:03.312Z (5 months ago)
- Topics: notion, notion-api, unity3d
- Language: C#
- Homepage:
- Size: 66.4 KB
- Stars: 8
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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");
}
```