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

https://github.com/cemuka/uframe

an experimental approach to make floating windows in unity based on Unity UI
https://github.com/cemuka/uframe

framework ugui ui unity unity3d

Last synced: about 1 year ago
JSON representation

an experimental approach to make floating windows in unity based on Unity UI

Awesome Lists containing this project

README

          

This project evolved and became the basis of the project [Quill](https://github.com/cemuka/Quill)

# uFrame
an experimental and programmatic approach to make floating and dragging windows in unity based on Unity UI.
```csharp
private void Start()
{
uFrame.Init();

var window = new Window();
window.SetTitle("Hello World");
window.SetSize(200, 160);

var button = new ButtonWidget("Hello Button");
window.root.Add(button);
}
```
![screenshot](./screenshot.png)