mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-14 08:04:40 +00:00
Moved GuiSliderProfile into core
This commit is contained in:
parent
48838494d4
commit
3d76cc4c12
3 changed files with 10 additions and 10 deletions
|
Before Width: | Height: | Size: 908 B After Width: | Height: | Size: 908 B |
|
|
@ -224,3 +224,13 @@ new GuiControlProfile( GuiButtonProfile )
|
||||||
hasBitmapArray = false;
|
hasBitmapArray = false;
|
||||||
category = "Core";
|
category = "Core";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------------
|
||||||
|
// Slider control
|
||||||
|
// ---------------------------------------------------------------------------
|
||||||
|
if( !isObject( GuiSliderProfile ) )
|
||||||
|
new GuiControlProfile( GuiSliderProfile )
|
||||||
|
{
|
||||||
|
bitmap = "core/gui/images/slider";
|
||||||
|
category = "Core";
|
||||||
|
};
|
||||||
|
|
@ -467,16 +467,6 @@ new GuiControlProfile( GuiRadioProfile )
|
||||||
category = "Core";
|
category = "Core";
|
||||||
};
|
};
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
// Slider control
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
if( !isObject( GuiSliderProfile ) )
|
|
||||||
new GuiControlProfile( GuiSliderProfile )
|
|
||||||
{
|
|
||||||
bitmap = "data/ui/images/slider";
|
|
||||||
category = "Core";
|
|
||||||
};
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Scroll Profile
|
// Scroll Profile
|
||||||
//
|
//
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue