
This reverts commit5aa19be912
andb4a721af69
. Due to postponement of particle system rewrite it was decided to put particle code back into the 2.8 branch for the time being.
18 lines
562 B
Python
18 lines
562 B
Python
import bpy
|
|
psys = bpy.context.particle_system
|
|
cloth = bpy.context.particle_system.cloth
|
|
settings = bpy.context.particle_system.cloth.settings
|
|
collision = bpy.context.particle_system.cloth.collision_settings
|
|
|
|
settings.quality = 5
|
|
settings.mass = 0.30000001192092896
|
|
settings.bending_stiffness = 0.5
|
|
psys.settings.bending_random = 0.0
|
|
settings.bending_damping = 0.5
|
|
settings.air_damping = 1.0
|
|
settings.internal_friction = 0.0
|
|
settings.density_target = 0.0
|
|
settings.density_strength = 0.0
|
|
settings.voxel_cell_size = 0.10000000149011612
|
|
settings.pin_stiffness = 0.0
|