Pass args to resize() by name
This commit is contained in:
parent
b9cb08bff5
commit
a483a319e6
@ -32,12 +32,24 @@ end
|
|||||||
function Progress:_updateProgress()
|
function Progress:_updateProgress()
|
||||||
local width, height = self:getWidth(), self:getHeight()
|
local width, height = self:getWidth(), self:getHeight()
|
||||||
if self:isVertical() then
|
if self:isVertical() then
|
||||||
self.active:resize(width, round(self:getProgress() * height))
|
self.active:resize{
|
||||||
self.inactive:resize(width, round((1 - self:getProgress()) * height, true))
|
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())
|
self.inactive:setY(self.active:getY() + self.active:getHeight())
|
||||||
else
|
else
|
||||||
self.active:resize(round(self:getProgress() * width), height)
|
self.active:resize{
|
||||||
self.active:resize(round((1 - self:getProgress()) * width, true), height)
|
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())
|
self.inactive:setX(self.active:setX() + self.active:getWidth())
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user