Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 523 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 523 Bytes

This project evolved and became the basis of the project Quill

uFrame

an experimental and programmatic approach to make floating and dragging windows in unity based on Unity UI.

    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