Pass args to resize() by name

This commit is contained in:
Gabriel Tofvesson 2024-10-11 23:27:02 +02:00
parent b9cb08bff5
commit a483a319e6

View File

@ -32,12 +32,24 @@ end
function Progress:_updateProgress()
local width, height = self:getWidth(), self:getHeight()
if self:isVertical() then
self.active:resize(width, round(self:getProgress() * height))
self.inactive:resize(width, round((1 - self:getProgress()) * height, true))
self.active:resize{
width = width,
height = round(self:getProgress() * height)
}
self.inactive:resize{
width = width,
height = round((1 - self:getProgress()) * height, true)
}
self.inactive:setY(self.active:getY() + self.active:getHeight())
else
self.active:resize(round(self:getProgress() * width), height)
self.active:resize(round((1 - self:getProgress()) * width, true), height)
self.active:resize{
width = round(self:getProgress() * width),
height = height
}
self.active:resize{
width = round((1 - self:getProgress()) * width, true),
height = height
}
self.inactive:setX(self.active:setX() + self.active:getWidth())
end
end