git-subtree-dir: mulit git-subtree-mainline: 69233e59c8a641ceb835daae961ebce1127faa79 git-subtree-split: 285fa7e933d1986bcbd354294c05cee40ef43cea
8 lines
265 B
Plaintext
8 lines
265 B
Plaintext
function gui:newFrame(name,x, y, w, h, sx ,sy ,sw ,sh)
|
|
x,y,w,h,sx,sy,sw,sh=filter(name, x, y, w, h, sx ,sy ,sw ,sh)
|
|
local c=self:newBase("Frame",name, x, y, w, h, sx ,sy ,sw ,sh)
|
|
c.WasBeingDragged=false
|
|
c.IsBeingDragged=false
|
|
c.Draggable=false
|
|
return c
|
|
end |