Hirashi3630 / UrGUI

UrGUI: easy to create GUI for Unity mods and debug
MIT License
18 stars 5 forks source link

Dynamic GUIWindow creation #22

Closed Hirashi3630 closed 2 years ago

Hirashi3630 commented 2 years ago

currently to create a GUIWindow you need to specify starting X/Y position and width/height like so...

var window1 = GUIWindow.Begin("window1's title", 10, 10, 200, 400);


make a dynamic positioning to be able to create a window with only title parameter like so...

var window1 = GUIWindow.Begin("window1's title");


support multiple windows that don't cover each other

Hirashi3630 commented 2 years ago

position is solved in commit 02e5523

dynamic width/height needs to be responding to controls in runtime

Hirashi3630 commented 2 years ago

dynamic starting size will not be worked on for now open new issue if requested

Hirashi3630 commented 2 years ago

added in e853998