lua: gui library (WIP)

This commit is contained in:
MihailRis
2024-02-13 18:16:18 +03:00
parent 302b649634
commit 05589b721e
14 changed files with 262 additions and 25 deletions
+4
View File
@@ -110,6 +110,10 @@ void UINode::setCoord(glm::vec2 coord) {
this->coord = coord;
}
glm::vec2 UINode::getCoord() const {
return coord;
}
glm::vec2 UINode::getSize() const {
return size;
}
+1
View File
@@ -112,6 +112,7 @@ namespace gui {
/* Calculate screen position of the element */
virtual glm::vec2 calcCoord() const;
virtual void setCoord(glm::vec2 coord);
glm::vec2 getCoord() const;
virtual glm::vec2 getSize() const;
virtual void setSize(glm::vec2 size);
virtual void refresh() {};