From 936517ed49e005d0cc621f1209ec1c0cf5a549f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=84=B8=EC=A0=A4=EA=B7=80=20=EA=B3=A0=EC=96=91=EC=9D=B4?= =?UTF-8?q?=EB=93=A4?= <46598063+qwreey75@users.noreply.github.com> Date: Sun, 19 Dec 2021 16:32:12 +0900 Subject: [PATCH] Something fixed ? --- mybutton.lua | 1 + src/store.lua | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/mybutton.lua b/mybutton.lua index 0bec8c0..7d34b2f 100644 --- a/mybutton.lua +++ b/mybutton.lua @@ -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) diff --git a/src/store.lua b/src/store.lua index 6bdecb3..22c5fbe 100644 --- a/src/store.lua +++ b/src/store.lua @@ -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)