Ver código fonte

Moved GuiSliderProfile into core

Tony 5 anos atrás
pai
commit
3d76cc4c12

+ 0 - 0
Templates/BaseGame/game/data/ui/images/slider.png → Templates/BaseGame/game/core/gui/images/slider.png


+ 10 - 0
Templates/BaseGame/game/core/gui/scripts/profiles.cs

@@ -224,3 +224,13 @@ new GuiControlProfile( GuiButtonProfile )
    hasBitmapArray = false;
    category = "Core";
 };
+
+// ---------------------------------------------------------------------------
+// Slider control
+// ---------------------------------------------------------------------------
+if( !isObject( GuiSliderProfile ) )
+new GuiControlProfile( GuiSliderProfile )
+{
+   bitmap = "core/gui/images/slider";
+   category = "Core";
+};

+ 0 - 10
Templates/BaseGame/game/data/ui/scripts/profiles.cs

@@ -467,16 +467,6 @@ new GuiControlProfile( GuiRadioProfile )
    category = "Core";
 };
 
-// ---------------------------------------------------------------------------
-// Slider control
-// ---------------------------------------------------------------------------
-if( !isObject( GuiSliderProfile ) )
-new GuiControlProfile( GuiSliderProfile )
-{
-   bitmap = "data/ui/images/slider";
-   category = "Core";
-};
-
 //
 // Scroll Profile
 //