IO: Option to import each 3DS file on a new collection #105232
@ -173,7 +173,7 @@ class MAX3DS_PT_import_include(bpy.types.Panel):
|
||||
layrow.label(text="", icon='ANIM' if operator.use_keyframes else 'DECORATE_DRIVER')
|
||||
layrow = layout.row(align=True)
|
||||
layrow.prop(operator, "use_collection")
|
||||
layrow.label(text="", icon='OUTLINER_COLLECTION' if operator.new_collection else 'COLLECTION_NEW')
|
||||
layrow.label(text="", icon='OUTLINER_COLLECTION' if operator.use_collection else 'GROUP')
|
||||
RobLop marked this conversation as resolved
Outdated
|
||||
layrow = layout.row(align=True)
|
||||
RobLop marked this conversation as resolved
Outdated
Sebastian Sille
commented
This looks better if we move it up before "use_cursor" (so it looks more the same like the exporter) This looks better if we move it up before "use_cursor" (so it looks more the same like the exporter)
|
||||
layrow.prop(operator, "use_cursor")
|
||||
RobLop marked this conversation as resolved
Outdated
Sebastian Sille
commented
call it "use_collection" to match with style guide call it "use_collection" to match with style guide
|
||||
layrow.label(text="", icon='PIVOT_CURSOR' if operator.use_cursor else 'CURSOR')
|
||||
|
Loading…
Reference in New Issue
Block a user
one last fix to make, replace this with:
layrow.label(text="", icon='OUTLINER_COLLECTION' if operator.use_collection else 'GROUP')
the GROUP icon looks better because it is the inverse of the collection icon ;)