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-05-12 02:10:05 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-05-12 03:13:54 +0300
commit20f59bfd2bc12cc67d045c11f47b6925e3b2a0a1 (patch)
tree14ecf3bba5bd72b132f069162ff44ba5dd182c3a /ant_landscape
parente006f6a4964e52276fc34ced4add007b66e66946 (diff)
ant_landscape: smooth shade off default, Fix: T64428
Diffstat (limited to 'ant_landscape')
-rw-r--r--ant_landscape/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ant_landscape/__init__.py b/ant_landscape/__init__.py
index edec0427..1fe68415 100644
--- a/ant_landscape/__init__.py
+++ b/ant_landscape/__init__.py
@@ -138,7 +138,7 @@ class AntMainSettingsPanel(bpy.types.Panel):
col.operator('mesh.ant_landscape_regenerate', text="Regenerate", icon="LOOP_FORWARDS")
row = box.row(align=True)
split = row.split(align=True)
- split.prop(ant, "smooth_mesh", toggle=True, text="Smooth", icon='SHADING_SOLID')
+ split.prop(ant, "smooth_mesh", toggle=False, text="Smooth", icon='SHADING_SOLID')
split.prop(ant, "tri_face", toggle=True, text="Triangulate", icon='MESH_DATA')
if ant.sphere_mesh:
split.prop(ant, "remove_double", toggle=True, text="Remove Doubles", icon='MESH_DATA')
@@ -436,7 +436,7 @@ class AntLandscapePropertiesGroup(bpy.types.PropertyGroup):
)
smooth_mesh: BoolProperty(
name="Smooth",
- default=True,
+ default=False,
description="Shade smooth"
)
tri_face: BoolProperty(