Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormeta-androcto <meta.androcto1@gmail.com>2019-03-26 11:03:31 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-03-26 11:03:31 +0300
commitd78f3972f5e7445f1c5f5bf84831dddb1069a0f6 (patch)
tree2ae58d61603528ccbf24576e3da461bf2ec8d275 /ant_landscape
parentd0a369d6bb05be83ca13b88087c874b930cd6726 (diff)
ant_landscape update Sidebar location
Diffstat (limited to 'ant_landscape')
-rw-r--r--ant_landscape/__init__.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/ant_landscape/__init__.py b/ant_landscape/__init__.py
index 7b30f821..edec0427 100644
--- a/ant_landscape/__init__.py
+++ b/ant_landscape/__init__.py
@@ -24,7 +24,7 @@ bl_info = {
"author": "Jimmy Hazevoet",
"version": (0, 1, 8),
"blender": (2, 80, 0),
- "location": "View3D > Tool Shelf",
+ "location": "View3D > Sidebar",
"description": "Another Noise Tool: Landscape and Displace",
"warning": "",
"wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/"
@@ -76,7 +76,7 @@ def menu_func_landscape(self, context):
# Landscape Add Panel
class AntLandscapeAddPanel(bpy.types.Panel):
- bl_category = "A.N.T. Landscape"
+ bl_category = "Create"
bl_label = "Landscape"
bl_idname = "ANTLANDSCAPE_PT_add"
bl_space_type = "VIEW_3D"
@@ -90,7 +90,7 @@ class AntLandscapeAddPanel(bpy.types.Panel):
# Landscape Tools:
class AntLandscapeToolsPanel(bpy.types.Panel):
- bl_category = "A.N.T. Landscape"
+ bl_category = "Create"
bl_label = "Landscape Tools"
bl_idname = "ANTLANDSCAPE_PT_tools"
bl_space_type = "VIEW_3D"
@@ -115,7 +115,7 @@ class AntLandscapeToolsPanel(bpy.types.Panel):
# Landscape Main Settings
class AntMainSettingsPanel(bpy.types.Panel):
- bl_category = "A.N.T. Landscape"
+ bl_category = "Create"
bl_label = "Landscape Main"
bl_idname = "ANTLANDSCAPE_PT_main"
bl_space_type = "VIEW_3D"
@@ -157,7 +157,7 @@ class AntMainSettingsPanel(bpy.types.Panel):
# Landscape Noise Settings
class AntNoiseSettingsPanel(bpy.types.Panel):
- bl_category = "A.N.T. Landscape"
+ bl_category = "Create"
bl_label = "Landscape Noise"
bl_idname = "ANTLANDSCAPE_PT_noise"
bl_space_type = "VIEW_3D"
@@ -355,7 +355,7 @@ class AntNoiseSettingsPanel(bpy.types.Panel):
# Landscape Displace Settings
class AntDisplaceSettingsPanel(bpy.types.Panel):
- bl_category = "A.N.T. Landscape"
+ bl_category = "Create"
bl_label = "Landscape Displace"
bl_idname = "ANTLANDSCAPE_PT_disp"
bl_space_type = "VIEW_3D"