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
- Host: GitHub
- URL: https://github.com/cemuka/uframe
- Owner: cemuka
- License: mit
- Created: 2020-02-02T13:33:58.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-10-08T10:40:30.000Z (over 4 years ago)
- Last Synced: 2025-03-17T04:51:32.909Z (about 1 year ago)
- Topics: framework, ugui, ui, unity, unity3d
- Language: C#
- Homepage:
- Size: 17.8 MB
- Stars: 14
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
}
```
