block.material + minor refactor

This commit is contained in:
MihailRis
2024-04-25 05:12:45 +03:00
parent 8730b03a52
commit b1a79e3a6e
9 changed files with 35 additions and 16 deletions
+2 -4
View File
@@ -113,16 +113,14 @@ void GUI::actFocused() {
}
}
/// @brief Processing user input and UI logic
/// @param delta delta time
void GUI::act(float delta) {
void GUI::act(float delta, const Viewport& vp) {
while (!postRunnables.empty()) {
runnable callback = postRunnables.back();
postRunnables.pop();
callback();
}
container->setSize(glm::vec2(Window::width, Window::height));
container->setSize(vp.size());
container->act(delta);
auto prevfocus = focus;