mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-05 13:30:34 +00:00
19 lines
No EOL
420 B
C#
19 lines
No EOL
420 B
C#
if(isClass(GuiPlatformGenericMenuBar))
|
|
{
|
|
exec("./guiPlatformGenericMenubar.ed.gui");
|
|
}
|
|
else
|
|
{
|
|
%guiContent = new GuiControl(PlatformGenericMenubar) {
|
|
profile = "GuiModelessDialogProfile";
|
|
|
|
new GuiControl()
|
|
{
|
|
internalName = "menubar";
|
|
extent = "1024 20";
|
|
minExtent = "320 20";
|
|
horizSizing = "width";
|
|
profile = "GuiMenuBarProfile";
|
|
};
|
|
};
|
|
} |