Closed Hirashi3630 closed 2 years ago
currently to create a GUIWindow you need to specify starting X/Y position and width/height like so...
GUIWindow
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
position is solved in commit 02e5523
dynamic width/height needs to be responding to controls in runtime
dynamic starting size will not be worked on for now open new issue if requested
added in e853998
currently to create a
GUIWindow
you need to specify starting X/Y position and width/height like so...make a dynamic positioning to be able to create a window with only title parameter like so...
support multiple windows that don't cover each other