fix(utils): add the method arguments to setSize
This commit is contained in:
parent
bc45f866c2
commit
0114927ac0
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ function Box3D:setSizeFromOwner()
|
||||||
self:setSize(self.owner.w, self.owner.h, self.owner.d)
|
self:setSize(self.owner.w, self.owner.h, self.owner.d)
|
||||||
end
|
end
|
||||||
|
|
||||||
function Box3D:setSize()
|
function Box3D:setSize(w, h, d)
|
||||||
self.w = w
|
self.w = w
|
||||||
self.h = h
|
self.h = h
|
||||||
self.d = d
|
self.d = d
|
||||||
|
|
Loading…
Reference in a new issue