Skip to content

Import OSM randomHeightThreshold FloatProperty to IntProperty #941

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion operators/io_import_osm.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def listObjects(self, context):
buildingsExtrusion: BoolProperty(name='Buildings extrusion', description='', default=True)
defaultHeight: FloatProperty(name='Default Height', description='Set the height value using for extrude building when the tag is missing', default=20)
levelHeight: FloatProperty(name='Level height', description='Set a height for a building level, using for compute extrude height based on number of levels', default=3)
randomHeightThreshold: FloatProperty(name='Random height threshold', description='Threshold value for randomize default height', default=0)
randomHeightThreshold: IntProperty(name='Random height threshold', description='Threshold value for randomize default height', default=0)

def draw(self, context):
layout = self.layout
Expand Down