Something fixed ?
This commit is contained in:
parent
846788fd4c
commit
936517ed49
2 changed files with 1 additions and 2 deletions
|
|
@ -12,6 +12,7 @@ local textButton = class.import "TextButton";
|
|||
imageButton.BackgroundTransparency = 1;
|
||||
textButton.BorderSizePixel = 0;
|
||||
textLabel.Size = UDim2.fromScale(1,1);
|
||||
textLabel.BackgroundTransparency = 1;
|
||||
|
||||
-- 기본 값 설정
|
||||
function myButton:init(props)
|
||||
|
|
|
|||
|
|
@ -63,13 +63,11 @@ function module.init(shared)
|
|||
function new.getObjects(id)
|
||||
return items[id];
|
||||
end
|
||||
|
||||
-- get first object with id (not array)
|
||||
function new.getObject(id)
|
||||
local item = items[id];
|
||||
return item and item[1];
|
||||
end
|
||||
|
||||
--TODO: if item is exist already, ignore this call
|
||||
-- adding object with id
|
||||
function new.addObject(ids,object)
|
||||
|
|
|
|||
Loading…
Reference in a new issue