From 3acebdeecdbd31be44be26bb3f56c37a8fd1416e Mon Sep 17 00:00:00 2001 From: "Andrii Doroshenko (Xrayez)" Date: Sun, 8 Mar 2020 19:32:25 +0200 Subject: Fix missing module editor icons Module icons need to be renamed to PascalCase as well for them to be registered in 4.0. See godotengine/godot#36513. --- modules/csg/icons/CSGBox.svg | 6 ++++++ modules/csg/icons/CSGCapsule.svg | 6 ++++++ modules/csg/icons/CSGCombiner.svg | 8 ++++++++ modules/csg/icons/CSGCylinder.svg | 6 ++++++ modules/csg/icons/CSGMesh.svg | 6 ++++++ modules/csg/icons/CSGPolygon.svg | 6 ++++++ modules/csg/icons/CSGSphere.svg | 6 ++++++ modules/csg/icons/CSGTorus.svg | 6 ++++++ modules/csg/icons/icon_c_s_g_box.svg | 6 ------ modules/csg/icons/icon_c_s_g_capsule.svg | 6 ------ modules/csg/icons/icon_c_s_g_combiner.svg | 8 -------- modules/csg/icons/icon_c_s_g_cylinder.svg | 6 ------ modules/csg/icons/icon_c_s_g_mesh.svg | 6 ------ modules/csg/icons/icon_c_s_g_polygon.svg | 6 ------ modules/csg/icons/icon_c_s_g_sphere.svg | 6 ------ modules/csg/icons/icon_c_s_g_torus.svg | 6 ------ modules/gdnative/icons/GDNativeLibrary.svg | 5 +++++ modules/gdnative/icons/NativeScript.svg | 5 +++++ modules/gdnative/icons/icon_g_d_native_library.svg | 5 ----- modules/gdnative/icons/icon_native_script.svg | 5 ----- modules/gdscript/icons/GDScript.svg | 5 +++++ modules/gdscript/icons/icon_g_d_script.svg | 5 ----- modules/gridmap/icons/GridMap.svg | 5 +++++ modules/gridmap/icons/icon_grid_map.svg | 5 ----- modules/mono/icons/CSharpScript.svg | 5 +++++ modules/mono/icons/icon_c_sharp_script.svg | 5 ----- modules/opensimplex/icons/NoiseTexture.svg | 3 +++ modules/opensimplex/icons/icon_noise_texture.svg | 3 --- modules/visual_script/icons/VisualScript.svg | 6 ++++++ modules/visual_script/icons/icon_visual_script.svg | 6 ------ 30 files changed, 84 insertions(+), 84 deletions(-) create mode 100644 modules/csg/icons/CSGBox.svg create mode 100644 modules/csg/icons/CSGCapsule.svg create mode 100644 modules/csg/icons/CSGCombiner.svg create mode 100644 modules/csg/icons/CSGCylinder.svg create mode 100644 modules/csg/icons/CSGMesh.svg create mode 100644 modules/csg/icons/CSGPolygon.svg create mode 100644 modules/csg/icons/CSGSphere.svg create mode 100644 modules/csg/icons/CSGTorus.svg delete mode 100644 modules/csg/icons/icon_c_s_g_box.svg delete mode 100644 modules/csg/icons/icon_c_s_g_capsule.svg delete mode 100644 modules/csg/icons/icon_c_s_g_combiner.svg delete mode 100644 modules/csg/icons/icon_c_s_g_cylinder.svg delete mode 100644 modules/csg/icons/icon_c_s_g_mesh.svg delete mode 100644 modules/csg/icons/icon_c_s_g_polygon.svg delete mode 100644 modules/csg/icons/icon_c_s_g_sphere.svg delete mode 100644 modules/csg/icons/icon_c_s_g_torus.svg create mode 100644 modules/gdnative/icons/GDNativeLibrary.svg create mode 100644 modules/gdnative/icons/NativeScript.svg delete mode 100644 modules/gdnative/icons/icon_g_d_native_library.svg delete mode 100644 modules/gdnative/icons/icon_native_script.svg create mode 100644 modules/gdscript/icons/GDScript.svg delete mode 100644 modules/gdscript/icons/icon_g_d_script.svg create mode 100644 modules/gridmap/icons/GridMap.svg delete mode 100644 modules/gridmap/icons/icon_grid_map.svg create mode 100644 modules/mono/icons/CSharpScript.svg delete mode 100644 modules/mono/icons/icon_c_sharp_script.svg create mode 100644 modules/opensimplex/icons/NoiseTexture.svg delete mode 100644 modules/opensimplex/icons/icon_noise_texture.svg create mode 100644 modules/visual_script/icons/VisualScript.svg delete mode 100644 modules/visual_script/icons/icon_visual_script.svg (limited to 'modules') diff --git a/modules/csg/icons/CSGBox.svg b/modules/csg/icons/CSGBox.svg new file mode 100644 index 0000000000..67e34df444 --- /dev/null +++ b/modules/csg/icons/CSGBox.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/modules/csg/icons/CSGCapsule.svg b/modules/csg/icons/CSGCapsule.svg new file mode 100644 index 0000000000..92a7b5a870 --- /dev/null +++ b/modules/csg/icons/CSGCapsule.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/modules/csg/icons/CSGCombiner.svg b/modules/csg/icons/CSGCombiner.svg new file mode 100644 index 0000000000..cce2902e24 --- /dev/null +++ b/modules/csg/icons/CSGCombiner.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/modules/csg/icons/CSGCylinder.svg b/modules/csg/icons/CSGCylinder.svg new file mode 100644 index 0000000000..645a74c79b --- /dev/null +++ b/modules/csg/icons/CSGCylinder.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/modules/csg/icons/CSGMesh.svg b/modules/csg/icons/CSGMesh.svg new file mode 100644 index 0000000000..6e940a4aa5 --- /dev/null +++ b/modules/csg/icons/CSGMesh.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/modules/csg/icons/CSGPolygon.svg b/modules/csg/icons/CSGPolygon.svg new file mode 100644 index 0000000000..71b03cb8e6 --- /dev/null +++ b/modules/csg/icons/CSGPolygon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/modules/csg/icons/CSGSphere.svg b/modules/csg/icons/CSGSphere.svg new file mode 100644 index 0000000000..f81b566993 --- /dev/null +++ b/modules/csg/icons/CSGSphere.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/modules/csg/icons/CSGTorus.svg b/modules/csg/icons/CSGTorus.svg new file mode 100644 index 0000000000..3d30aa47b2 --- /dev/null +++ b/modules/csg/icons/CSGTorus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/modules/csg/icons/icon_c_s_g_box.svg b/modules/csg/icons/icon_c_s_g_box.svg deleted file mode 100644 index 67e34df444..0000000000 --- a/modules/csg/icons/icon_c_s_g_box.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/modules/csg/icons/icon_c_s_g_capsule.svg b/modules/csg/icons/icon_c_s_g_capsule.svg deleted file mode 100644 index 92a7b5a870..0000000000 --- a/modules/csg/icons/icon_c_s_g_capsule.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/modules/csg/icons/icon_c_s_g_combiner.svg b/modules/csg/icons/icon_c_s_g_combiner.svg deleted file mode 100644 index cce2902e24..0000000000 --- a/modules/csg/icons/icon_c_s_g_combiner.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/modules/csg/icons/icon_c_s_g_cylinder.svg b/modules/csg/icons/icon_c_s_g_cylinder.svg deleted file mode 100644 index 645a74c79b..0000000000 --- a/modules/csg/icons/icon_c_s_g_cylinder.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/modules/csg/icons/icon_c_s_g_mesh.svg b/modules/csg/icons/icon_c_s_g_mesh.svg deleted file mode 100644 index 6e940a4aa5..0000000000 --- a/modules/csg/icons/icon_c_s_g_mesh.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/modules/csg/icons/icon_c_s_g_polygon.svg b/modules/csg/icons/icon_c_s_g_polygon.svg deleted file mode 100644 index 71b03cb8e6..0000000000 --- a/modules/csg/icons/icon_c_s_g_polygon.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/modules/csg/icons/icon_c_s_g_sphere.svg b/modules/csg/icons/icon_c_s_g_sphere.svg deleted file mode 100644 index f81b566993..0000000000 --- a/modules/csg/icons/icon_c_s_g_sphere.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/modules/csg/icons/icon_c_s_g_torus.svg b/modules/csg/icons/icon_c_s_g_torus.svg deleted file mode 100644 index 3d30aa47b2..0000000000 --- a/modules/csg/icons/icon_c_s_g_torus.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/modules/gdnative/icons/GDNativeLibrary.svg b/modules/gdnative/icons/GDNativeLibrary.svg new file mode 100644 index 0000000000..b494c7af6e --- /dev/null +++ b/modules/gdnative/icons/GDNativeLibrary.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/modules/gdnative/icons/NativeScript.svg b/modules/gdnative/icons/NativeScript.svg new file mode 100644 index 0000000000..fb9e135627 --- /dev/null +++ b/modules/gdnative/icons/NativeScript.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/modules/gdnative/icons/icon_g_d_native_library.svg b/modules/gdnative/icons/icon_g_d_native_library.svg deleted file mode 100644 index b494c7af6e..0000000000 --- a/modules/gdnative/icons/icon_g_d_native_library.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/modules/gdnative/icons/icon_native_script.svg b/modules/gdnative/icons/icon_native_script.svg deleted file mode 100644 index fb9e135627..0000000000 --- a/modules/gdnative/icons/icon_native_script.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/modules/gdscript/icons/GDScript.svg b/modules/gdscript/icons/GDScript.svg new file mode 100644 index 0000000000..953bb9ae9e --- /dev/null +++ b/modules/gdscript/icons/GDScript.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/modules/gdscript/icons/icon_g_d_script.svg b/modules/gdscript/icons/icon_g_d_script.svg deleted file mode 100644 index 953bb9ae9e..0000000000 --- a/modules/gdscript/icons/icon_g_d_script.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/modules/gridmap/icons/GridMap.svg b/modules/gridmap/icons/GridMap.svg new file mode 100644 index 0000000000..eafe1211f2 --- /dev/null +++ b/modules/gridmap/icons/GridMap.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/modules/gridmap/icons/icon_grid_map.svg b/modules/gridmap/icons/icon_grid_map.svg deleted file mode 100644 index eafe1211f2..0000000000 --- a/modules/gridmap/icons/icon_grid_map.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/modules/mono/icons/CSharpScript.svg b/modules/mono/icons/CSharpScript.svg new file mode 100644 index 0000000000..69664ca553 --- /dev/null +++ b/modules/mono/icons/CSharpScript.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/modules/mono/icons/icon_c_sharp_script.svg b/modules/mono/icons/icon_c_sharp_script.svg deleted file mode 100644 index 69664ca553..0000000000 --- a/modules/mono/icons/icon_c_sharp_script.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/modules/opensimplex/icons/NoiseTexture.svg b/modules/opensimplex/icons/NoiseTexture.svg new file mode 100644 index 0000000000..5908c2b2d4 --- /dev/null +++ b/modules/opensimplex/icons/NoiseTexture.svg @@ -0,0 +1,3 @@ + + + diff --git a/modules/opensimplex/icons/icon_noise_texture.svg b/modules/opensimplex/icons/icon_noise_texture.svg deleted file mode 100644 index 5908c2b2d4..0000000000 --- a/modules/opensimplex/icons/icon_noise_texture.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/modules/visual_script/icons/VisualScript.svg b/modules/visual_script/icons/VisualScript.svg new file mode 100644 index 0000000000..f6475d590e --- /dev/null +++ b/modules/visual_script/icons/VisualScript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/modules/visual_script/icons/icon_visual_script.svg b/modules/visual_script/icons/icon_visual_script.svg deleted file mode 100644 index f6475d590e..0000000000 --- a/modules/visual_script/icons/icon_visual_script.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - -- cgit v1.2.3