- Added Timer

- Fixed BaseElement Visual request issues
- Added number animation
- Added entries animation
This commit is contained in:
Robert Jelic
2025-04-20 10:27:48 +02:00
parent 296e099e2c
commit d36c7e7867
9 changed files with 806 additions and 158 deletions

View File

@@ -109,6 +109,7 @@ end
--- @param child table The child to check
--- @return boolean boolean the child is visible
function Container:isChildVisible(child)
if not child:isType("VisualElement") then return false end
if(child.get("visible") == false)then return false end
if(child._destroyed)then return false end
local containerW, containerH = self.get("width"), self.get("height")