Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/properties_scene.py
| Show First 20 Lines • Show All 379 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| col = col.column() | col = col.column() | ||||
| col.prop(rbw, "time_scale", text="Speed") | col.prop(rbw, "time_scale", text="Speed") | ||||
| col = flow.column() | col = flow.column() | ||||
| col.active = rbw.enabled | col.active = rbw.enabled | ||||
| col.prop(rbw, "use_split_impulse") | col.prop(rbw, "use_split_impulse") | ||||
| col = col.column() | col = col.column() | ||||
| col.prop(rbw, "steps_per_second", text="Steps Per Second") | col.prop(rbw, "substeps_per_frame") | ||||
JacquesLucke: This API change should be mentioned in the commit and release notes. | |||||
zeddbAuthorUnsubmitted Done Inline ActionsRight, I'll should only do that after this patch has been accepted though? zeddb: Right, I'll should only do that after this patch has been accepted though? | |||||
| col.prop(rbw, "solver_iterations", text="Solver Iterations") | col.prop(rbw, "solver_iterations") | ||||
| class SCENE_PT_rigid_body_cache(RigidBodySubPanel, Panel): | class SCENE_PT_rigid_body_cache(RigidBodySubPanel, Panel): | ||||
| bl_label = "Cache" | bl_label = "Cache" | ||||
| bl_options = {'DEFAULT_CLOSED'} | bl_options = {'DEFAULT_CLOSED'} | ||||
| def draw(self, context): | def draw(self, context): | ||||
| scene = context.scene | scene = context.scene | ||||
| ▲ Show 20 Lines • Show All 42 Lines • Show Last 20 Lines | |||||
This API change should be mentioned in the commit and release notes.