Description
We advise against using this. It may be changed or removed in a future update.
This is derived from the deprecated
DPanelList.
A vertical list of models.
View source
Parent
Derives methods, etc not listed on this page from DPanelSelect.
Methods
Sets the height of the panel in the amount of 64px spawnicons.
Overrides Panel:SetHeight.
Called to set the list of models within the panel element.
Example
Creates a DModelSelect within a DFrame and adds four models.
local models
= {
["models/props_c17/oildrum001_explosive.mdl"] = {},
["models/props_c17/oildrum001.mdl"] = {},
["models/props_junk/TrafficCone001a.mdl"] = {},
["models/props_c17/gravestone004a.mdl"] = {}
}
local frame
= vgui.
Create(
"DFrame")
frame:
SetSize(
220,
220)
frame:
SetTitle(
"DModelSelect Example")
frame:
MakePopup()
frame:
Center()
local mselect
= vgui.
Create(
"DModelSelect", frame )
mselect:
SetModelList( models,
"",
false,
true )
mselect:
SetSize(
150,
150)
mselect:
Center()
Output: