mirror of
https://github.com/Ukendio/jecs.git
synced 2026-03-18 00:44:32 +00:00
26 lines
414 B
Text
26 lines
414 B
Text
|
|
--[[
|
||
|
|
|
||
|
|
container is a basic transparent frame that covers the entire frame.
|
||
|
|
|
||
|
|
]]
|
||
|
|
|
||
|
|
local vide = require(script.Parent.Parent.Parent.Parent.vide)
|
||
|
|
|
||
|
|
local create = vide.create
|
||
|
|
|
||
|
|
local function container(props: vide.vFrame)
|
||
|
|
return create "Frame" {
|
||
|
|
|
||
|
|
Name = "Container",
|
||
|
|
AutoLocalize = false,
|
||
|
|
|
||
|
|
Size = UDim2.fromScale(1, 1),
|
||
|
|
|
||
|
|
BackgroundTransparency = 1,
|
||
|
|
|
||
|
|
props,
|
||
|
|
}
|
||
|
|
end
|
||
|
|
|
||
|
|
return container
|