Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/properties_physics_cloth.py
| Context not available. | |||||
| col.prop(cloth, "goal_friction", text="Friction") | col.prop(cloth, "goal_friction", text="Friction") | ||||
| """ | """ | ||||
| col.prop(cloth, "dynamic_base_mesh") | |||||
| key = ob.data.shape_keys | key = ob.data.shape_keys | ||||
| if key: | if key and not cloth.dynamic_base_mesh: | ||||
| col.label(text="Rest Shape Key:") | row = layout.row() | ||||
| col.prop_search(cloth, "rest_shape_key", key, "key_blocks", text="") | row.prop_search(cloth, "rest_shape_key", key, "key_blocks") | ||||
| class PHYSICS_PT_cloth_cache(PhysicButtonsPanel, Panel): | class PHYSICS_PT_cloth_cache(PhysicButtonsPanel, Panel): | ||||
| Context not available. | |||||