mirror of
https://github.com/centau/vide.git
synced 2026-08-20 23:01:37 +00:00
112 lines
2.8 KiB
Lua
112 lines
2.8 KiB
Lua
--------------------------------------------------------------------------------------------------------------
|
|
-- vide/defaults.lua
|
|
--------------------------------------------------------------------------------------------------------------
|
|
|
|
-- todo
|
|
local Enum = Enum
|
|
local Color3 = Color3
|
|
local Vector3 = Vector3
|
|
|
|
if not game then
|
|
local mock = require "test/mock"
|
|
Enum = mock.Enum :: any
|
|
Color3 = mock.Color3 :: any
|
|
Vector3 = mock.Vector3 :: any
|
|
end
|
|
|
|
return {
|
|
Part = {
|
|
Material = Enum.Material.SmoothPlastic,
|
|
Size = Vector3.new(1, 1, 1),
|
|
Anchored = true
|
|
},
|
|
|
|
BillboardGui = {
|
|
ResetOnSpawn = false,
|
|
ZIndexBehavior = Enum.ZIndexBehavior.Sibling
|
|
},
|
|
|
|
CanvasGroup = nil,
|
|
|
|
Frame = {
|
|
BackgroundColor3 = Color3.new(1, 1, 1),
|
|
BorderColor3 = Color3.new(0, 0, 0),
|
|
BorderSizePixel = 0
|
|
},
|
|
|
|
ImageButton = {
|
|
BackgroundColor3 = Color3.new(1, 1, 1),
|
|
BorderColor3 = Color3.new(0, 0, 0),
|
|
BorderSizePixel = 0,
|
|
AutoButtonColor = false
|
|
},
|
|
|
|
ImageLabel = {
|
|
BackgroundColor3 = Color3.new(1, 1, 1),
|
|
BorderColor3 = Color3.new(0, 0, 0),
|
|
BorderSizePixel = 0,
|
|
},
|
|
|
|
ScreenGui = {
|
|
ResetOnSpawn = false,
|
|
ZIndexBehavior = Enum.ZIndexBehavior.Sibling
|
|
},
|
|
|
|
ScrollingFrame = {
|
|
BackgroundColor3 = Color3.new(1, 1, 1),
|
|
BorderColor3 = Color3.new(0, 0, 0),
|
|
BorderSizePixel = 0,
|
|
ScrollBarImageColor3 = Color3.new(0, 0, 0)
|
|
},
|
|
|
|
SurfaceGui = {
|
|
ResetOnSpawn = false,
|
|
ZIndexBehavior = Enum.ZIndexBehavior.Sibling,
|
|
|
|
PixelsPerStud = 50,
|
|
SizingMode = Enum.SurfaceGuiSizingMode.PixelsPerStud
|
|
},
|
|
|
|
TextBox = {
|
|
BackgroundColor3 = Color3.new(1, 1, 1),
|
|
BorderColor3 = Color3.new(0, 0, 0),
|
|
BorderSizePixel = 0,
|
|
ClearTextOnFocus = false,
|
|
Font = Enum.Font.SourceSans,
|
|
Text = "",
|
|
TextColor3 = Color3.new(0, 0, 0)
|
|
},
|
|
|
|
TextButton = {
|
|
BackgroundColor3 = Color3.new(1, 1, 1),
|
|
BorderColor3 = Color3.new(0, 0, 0),
|
|
BorderSizePixel = 0,
|
|
AutoButtonColor = false,
|
|
Font = Enum.Font.SourceSans,
|
|
Text = "",
|
|
TextColor3 = Color3.new(0, 0, 0)
|
|
},
|
|
|
|
TextLabel = {
|
|
BackgroundColor3 = Color3.new(1, 1, 1),
|
|
BorderColor3 = Color3.new(0, 0, 0),
|
|
BorderSizePixel = 0,
|
|
Font = Enum.Font.SourceSans,
|
|
Text = "",
|
|
TextColor3 = Color3.new(0, 0, 0)
|
|
},
|
|
|
|
-- UIComponent instances
|
|
|
|
VideoFrame = {
|
|
BackgroundColor3 = Color3.new(1, 1, 1),
|
|
BorderColor3 = Color3.new(0, 0, 0),
|
|
BorderSizePixel = 0
|
|
},
|
|
|
|
ViewportFrame = {
|
|
BackgroundColor3 = Color3.new(1, 1, 1),
|
|
BorderColor3 = Color3.new(0, 0, 0),
|
|
BorderSizePixel = 0
|
|
}
|
|
}
|