gui: added UINode.zindex

This commit is contained in:
MihailRis
2024-02-13 12:46:06 +03:00
parent e1b2d8f7e4
commit b6f675a540
6 changed files with 25 additions and 0 deletions
+8
View File
@@ -143,6 +143,14 @@ glm::vec4 UINode::getMargin() const {
return margin;
}
void UINode::setZIndex(int zindex) {
this->zindex = zindex;
}
int UINode::getZIndex() const {
return zindex;
}
void UINode::lock() {
}