RCG: better locator sizes
This commit is contained in:
parent
a58dcdafb1
commit
e396b0c01e
1 changed files with 2 additions and 2 deletions
|
@ -71,7 +71,7 @@ def assembly_builder(item, libs_data, libs_data_dir, collection=None, parent=Non
|
|||
if item['type'] == 'LOCATOR':
|
||||
item_obj = bpy.data.objects.new(item['name'], None)
|
||||
item_obj.empty_display_type = 'CUBE'
|
||||
item_obj.empty_display_size = 0.01
|
||||
item_obj.empty_display_size = 0.0005
|
||||
collection.objects.link(item_obj)
|
||||
|
||||
elif item['type'] == 'LCS':
|
||||
|
@ -117,7 +117,7 @@ def assembly_builder(item, libs_data, libs_data_dir, collection=None, parent=Non
|
|||
if local_obj:
|
||||
local_obj[0].name = item['base_name']
|
||||
item_obj.empty_display_type = 'PLAIN_AXES'
|
||||
item_obj.empty_display_size = 0.01
|
||||
item_obj.empty_display_size = 0.0005
|
||||
|
||||
else:
|
||||
logger.error('Unknown object type %s of %s', item['type'], item['name'])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue