|
@@ -85,7 +85,8 @@ static Ref<StyleBoxLine> make_line_stylebox(Color p_color, int p_thickness = 1,
|
|
|
return style;
|
|
|
}
|
|
|
|
|
|
-Ref<ImageTexture> editor_generate_icon(int p_index, bool p_convert_color, float p_scale = EDSCALE, bool p_force_filter = false) {
|
|
|
+#ifdef MODULE_SVG_ENABLED
|
|
|
+static Ref<ImageTexture> editor_generate_icon(int p_index, bool p_convert_color, float p_scale = EDSCALE, bool p_force_filter = false) {
|
|
|
Ref<ImageTexture> icon = memnew(ImageTexture);
|
|
|
Ref<Image> img = memnew(Image);
|
|
|
|
|
@@ -99,6 +100,7 @@ Ref<ImageTexture> editor_generate_icon(int p_index, bool p_convert_color, float
|
|
|
|
|
|
return icon;
|
|
|
}
|
|
|
+#endif
|
|
|
|
|
|
#ifndef ADD_CONVERT_COLOR
|
|
|
#define ADD_CONVERT_COLOR(dictionary, old_color, new_color) dictionary[Color::html(old_color)] = Color::html(new_color)
|