-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDirectMenuItem.widget
More file actions
49 lines (49 loc) · 1.46 KB
/
Copy pathDirectMenuItem.widget
File metadata and controls
49 lines (49 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name":"DirectMenuItem",
"baseWidget":"DirectButton",
"moduleName":"DirectMenuItem",
"displayName":"Menu Item",
"className":"DirectMenuItem",
"classFilePath":"DirectGuiExtension.DirectMenuItem",
"customProperties":[
{
"displayName":"Items",
"internalName":"items",
"editType":"list",
"internalType": "list",
"postProcessFunctionName": "setItems"
},
{
"displayName":"Popup Location",
"internalName":"popupMenuLocation",
"editType":"optionMenu",
"valueOptions":{"Left":"left", "Right":"right", "Above":"above", "Below":"below"}
},
{
"displayName":"Highlight Color",
"internalName":"highlightColor",
"editType":"base4"
},
{
"displayName":"Item Frame Color",
"internalName":"itemFrameColor",
"defaultValue": [0.8, 0.8, 0.8, 1],
"editType":"base4"
},
{
"displayName":"Separator Frame Color",
"internalName":"separatorFrameColor",
"editType":"base4"
},
{
"internalName": "scale",
"defaultAspect": 0.1,
"defaultPixel": 24
},
{
"internalName": "text",
"defaultValue": "Menu Item"
}
],
"importPath":"from DirectGuiExtension.DirectMenuItem import DirectMenuItem"
}