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:
Diffstat (limited to 'io_convert_image_to_mesh_img/ui/terrainpanel.py')
-rw-r--r--io_convert_image_to_mesh_img/ui/terrainpanel.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_convert_image_to_mesh_img/ui/terrainpanel.py b/io_convert_image_to_mesh_img/ui/terrainpanel.py
index 93908709..2fc0d0b2 100644
--- a/io_convert_image_to_mesh_img/ui/terrainpanel.py
+++ b/io_convert_image_to_mesh_img/ui/terrainpanel.py
@@ -55,7 +55,7 @@ class TerrainPanel(Panel):
# functions to the property itself because they result in a recursion
# error. Instead, we use another, hidden, property to store the scaled
# resolution.
- bpy.types.Object.dtm_resolution = FloatProperty(
+ bpy.types.Object.dtm_resolution: FloatProperty(
subtype="PERCENTAGE",
name="New Resolution",
description=(
@@ -70,7 +70,7 @@ class TerrainPanel(Panel):
),
min=1.0, max=100.0, default=10.0
)
- bpy.types.Object.scaled_dtm_resolution = FloatProperty(
+ bpy.types.Object.scaled_dtm_resolution: FloatProperty(
options={'HIDDEN'},
name="Scaled Terrain Model Resolution",
get=(lambda self: self.dtm_resolution / 100.0)