Skip to content
Dark Fated edited this page Oct 29, 2023 · 1 revision

Mantle.ui.sp(s)

local menu = vgui.Create('DFrame')
menu:SetSize(150, 300)
menu:Center()
menu:MakePopup()

menu.sp = vgui.Create('DScrollPanel', menu)
Mantle.ui.sp(menu.sp)
menu.sp:Dock(FILL)

for k = 1, 15 do
    local btn = vgui.Create('DButton', menu.sp)
    btn:Dock(TOP)
end

s

UI target

Welcome to the Mantle wiki

VGUI elements

Wiki is in the process of being created

Clone this wiki locally