Fix T56293: Particle Instance Modifier Axis Buttons UX.
Those axis buttons indeed affect instances orientation even when Create Along Path is not defined...
This commit is contained in:
@@ -734,23 +734,25 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
|
|||||||
row.prop(md, "particle_amount", text="Amount")
|
row.prop(md, "particle_amount", text="Amount")
|
||||||
row.prop(md, "particle_offset", text="Offset")
|
row.prop(md, "particle_offset", text="Offset")
|
||||||
|
|
||||||
|
row = layout.row(align=True)
|
||||||
|
row.prop(md, "axis", expand=True)
|
||||||
|
|
||||||
layout.separator()
|
layout.separator()
|
||||||
|
|
||||||
layout.prop(md, "use_path", text="Create Along Paths")
|
layout.prop(md, "use_path", text="Create Along Paths")
|
||||||
|
|
||||||
split = layout.split()
|
col = layout.column()
|
||||||
split.active = md.use_path
|
col.active = md.use_path
|
||||||
col = split.column()
|
|
||||||
col.row().prop(md, "axis", expand=True)
|
|
||||||
col.prop(md, "use_preserve_shape")
|
col.prop(md, "use_preserve_shape")
|
||||||
|
|
||||||
col = split.column()
|
row = col.row(align=True)
|
||||||
col2 = col.column(align=True)
|
row.prop(md, "position", slider=True)
|
||||||
col2.prop(md, "position", slider=True)
|
row.prop(md, "random_position", text="Random", slider=True)
|
||||||
col2.prop(md, "random_position", text="Random", slider=True)
|
row = col.row(align=True)
|
||||||
col2 = col.column(align=True)
|
row.prop(md, "rotation", slider=True)
|
||||||
col2.prop(md, "rotation", slider=True)
|
row.prop(md, "random_rotation", text="Random", slider=True)
|
||||||
col2.prop(md, "random_rotation", text="Random", slider=True)
|
|
||||||
|
layout.separator()
|
||||||
|
|
||||||
col = layout.column()
|
col = layout.column()
|
||||||
col.prop_search(md, "index_layer_name", ob.data, "vertex_colors", text="Index Layer")
|
col.prop_search(md, "index_layer_name", ob.data, "vertex_colors", text="Index Layer")
|
||||||
|
Reference in New Issue
Block a user