0,0,0 in area X will not be the same as 0,0,0 in area Y
0,0,0 in area X will not be the same as 0,0,0 in area Y
myContainer:toggleFixedSize()myContainer = myContainer or Adjustable.Container:new({name = "myContainer", width = 100, height = 100})
function myContainer:toggleFixedSize()
if not self.FixedSize then
self.connectedToBorder = {}
self.connectedToBorder.bottom = true
self.connectedToBorder.left = true
self.connectedToBorder.top = true
self.connectedToBorder.right = true
self:setAbsolute(true)
self.FixedSize = true
else
self.connectedToBorder = {}
self.FixedSize = false
end
end