NothingOS Glyph Developer Kit
Control Nothing Phone's Glyph lighting system directly from your Unity game. This SDK provides native APIs for glyph-based progress bars and custom animations across all Nothing Phone models (Phone 1, 2, and 2a). Includes a .NET wrapper around the native Glyph Developer Kit with straightforward integration and support for Unity 2019.4 and newer.
com.am1goo.nothingos.gdk Install via UPM
Add to Unity Package Manager using this URL
https://www.pkglnk.dev/am1goo-gdk.git 
README Markdown
Copy this to your project's README.md
## Installation
Add **NothingOS Glyph Developer Kit** to your Unity project via Package Manager:
1. Open **Window > Package Manager**
2. Click **+** > **Add package from git URL**
3. Enter:
```
https://www.pkglnk.dev/am1goo-gdk.git
```
[](https://www.pkglnk.dev/pkg/am1goo-gdk)README
NothingOS for Unity
This SDK provides native APIs for all of the essential Glyph features on Nothing Phone.
Features
- glyph-based progress bars
- custom glyph animations
- supports all range of distributed devices (Phone 1, Phone 2, Phone 2a)
What's inside?
- .NET wrapper for Unity
- native Glyph Developer Kit
.jarlibrary
How to use
- First of all, you need to obtain
API Keyfrom Nothing Company by filling out the request form - In addition, you have to create
NothingSettingsscriptable object in any folder intoAssetsfolder and place thisAPI keyin it. - The last step is to write your own code and make Nothing Phone light!
Example:
using NothingOS;
using NothingOS.Glyphs;
public class Example : MonoBehaviour
{
void Start()
{
Nothing.Initialize();
}
void OnApplicationQuit()
{
Nothing.Shutdown();
}
void Update()
{
using (var builder = Nothing.glyphs.Builder())
{
builder
.SetPeriod(TimeSpan.FromSeconds(0.5f))
.SetInterval(TimeSpan.FromSeconds(0.25f))
.SetCycles(3)
.SetChannel(GlyphBuilder.Channel.ChannelA)
.SetChannelB();
using (var frame = builder.Build())
{
Nothing.glyphs.Animate(frame);
}
}
}
}
Installation
via Unity Package Manager
The latest version can be installed via package manager using following git URL: https://github.com/am1goo/NothingOS.Unity.git#1.0.1
via OpenUPM
The latest version can be installed via using following URL:
https://openupm.com/packages/com.am1goo.nothingos.gdk
Requirements
- Minimal SDK 19 (Android 4.4, KitKat)
Limitations
This plugin works only on SDK 34 or newer (Android 14, Upside Down Cake), on other devices it just do nothing.
Tested in
- Unity 2019.4.x
- Unity 2020.3.x
- Unity 2022.3.x
Contribute
Contribution in any form is very welcome. Bugs, feature requests or feedback can be reported in form of Issues.
Comments
No comments yet. Be the first!
Sign in to join the conversation
Sign In