2013-01-23 05:56:56 +00:00
|
|
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
#
|
|
|
|
# ##### END GPL LICENSE BLOCK #####
|
|
|
|
|
|
|
|
# <pep8 compliant>
|
|
|
|
import bpy
|
|
|
|
from bpy.types import Panel
|
|
|
|
|
|
|
|
|
|
|
|
class PHYSICS_PT_rigidbody_constraint_panel():
|
|
|
|
bl_space_type = 'PROPERTIES'
|
|
|
|
bl_region_type = 'WINDOW'
|
|
|
|
bl_context = "physics"
|
|
|
|
|
|
|
|
|
|
|
|
class PHYSICS_PT_rigid_body_constraint(PHYSICS_PT_rigidbody_constraint_panel, Panel):
|
|
|
|
bl_label = "Rigid Body Constraint"
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
|
|
|
ob = context.object
|
|
|
|
rd = context.scene.render
|
|
|
|
return (ob and ob.rigid_body_constraint and (not rd.use_game_engine))
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
ob = context.object
|
|
|
|
rbc = ob.rigid_body_constraint
|
|
|
|
|
2013-01-23 11:40:35 +00:00
|
|
|
layout.prop(rbc, "type")
|
|
|
|
|
|
|
|
row = layout.row()
|
|
|
|
row.prop(rbc, "enabled")
|
|
|
|
row.prop(rbc, "disable_collisions")
|
|
|
|
|
|
|
|
layout.prop(rbc, "object1")
|
|
|
|
layout.prop(rbc, "object2")
|
|
|
|
|
2013-02-23 23:04:07 +00:00
|
|
|
if rbc.type != 'MOTOR':
|
|
|
|
row = layout.row()
|
|
|
|
row.prop(rbc, "use_breaking")
|
|
|
|
sub = row.row()
|
|
|
|
sub.active = rbc.use_breaking
|
|
|
|
sub.prop(rbc, "breaking_threshold", text="Threshold")
|
2013-01-23 11:40:35 +00:00
|
|
|
|
|
|
|
row = layout.row()
|
2013-04-23 07:06:29 +00:00
|
|
|
row.prop(rbc, "use_override_solver_iterations", text="Override Iterations")
|
2013-01-23 11:40:35 +00:00
|
|
|
sub = row.row()
|
2013-04-23 07:06:29 +00:00
|
|
|
sub.active = rbc.use_override_solver_iterations
|
|
|
|
sub.prop(rbc, "solver_iterations", text="Iterations")
|
2013-01-23 11:40:35 +00:00
|
|
|
|
|
|
|
if rbc.type == 'HINGE':
|
|
|
|
col = layout.column(align=True)
|
|
|
|
col.label("Limits:")
|
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.scale_x = 0.5
|
|
|
|
sub.prop(rbc, "use_limit_ang_z", toggle=True)
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.active = rbc.use_limit_ang_z
|
|
|
|
sub.prop(rbc, "limit_ang_z_lower", text="Lower")
|
|
|
|
sub.prop(rbc, "limit_ang_z_upper", text="Upper")
|
|
|
|
|
|
|
|
elif rbc.type == 'SLIDER':
|
|
|
|
col = layout.column(align=True)
|
|
|
|
col.label("Limits:")
|
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.scale_x = 0.5
|
|
|
|
sub.prop(rbc, "use_limit_lin_x", toggle=True)
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.active = rbc.use_limit_lin_x
|
|
|
|
sub.prop(rbc, "limit_lin_x_lower", text="Lower")
|
|
|
|
sub.prop(rbc, "limit_lin_x_upper", text="Upper")
|
|
|
|
|
|
|
|
elif rbc.type == 'PISTON':
|
|
|
|
col = layout.column(align=True)
|
|
|
|
col.label("Limits:")
|
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.scale_x = 0.5
|
|
|
|
sub.prop(rbc, "use_limit_lin_x", toggle=True)
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.active = rbc.use_limit_lin_x
|
|
|
|
sub.prop(rbc, "limit_lin_x_lower", text="Lower")
|
|
|
|
sub.prop(rbc, "limit_lin_x_upper", text="Upper")
|
|
|
|
|
|
|
|
col = layout.column(align=True)
|
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.scale_x = 0.5
|
|
|
|
sub.prop(rbc, "use_limit_ang_x", toggle=True)
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.active = rbc.use_limit_ang_x
|
|
|
|
sub.prop(rbc, "limit_ang_x_lower", text="Lower")
|
|
|
|
sub.prop(rbc, "limit_ang_x_upper", text="Upper")
|
|
|
|
|
2013-02-23 23:04:07 +00:00
|
|
|
elif rbc.type == 'MOTOR':
|
|
|
|
col = layout.column(align=True)
|
|
|
|
col.label("Linear motor:")
|
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
sub = row.row(align=True)
|
2013-02-23 23:04:07 +00:00
|
|
|
sub.scale_x = 0.5
|
|
|
|
sub.prop(rbc, "use_motor_lin", toggle=True, text="Enable")
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-02-23 23:04:07 +00:00
|
|
|
sub.active = rbc.use_motor_lin
|
|
|
|
sub.prop(rbc, "motor_lin_target_velocity", text="Target Velocity")
|
|
|
|
sub.prop(rbc, "motor_lin_max_impulse", text="Max Impulse")
|
|
|
|
|
|
|
|
col.label("Angular motor:")
|
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
sub = row.row(align=True)
|
2013-02-23 23:04:07 +00:00
|
|
|
sub.scale_x = 0.5
|
|
|
|
sub.prop(rbc, "use_motor_ang", toggle=True, text="Enable")
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-02-23 23:04:07 +00:00
|
|
|
sub.active = rbc.use_motor_ang
|
|
|
|
sub.prop(rbc, "motor_ang_target_velocity", text="Target Velocity")
|
|
|
|
sub.prop(rbc, "motor_ang_max_impulse", text="Max Impulse")
|
|
|
|
|
2013-01-23 11:40:35 +00:00
|
|
|
elif rbc.type in {'GENERIC', 'GENERIC_SPRING'}:
|
|
|
|
col = layout.column(align=True)
|
|
|
|
col.label("Limits:")
|
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.scale_x = 0.5
|
|
|
|
sub.prop(rbc, "use_limit_lin_x", toggle=True)
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.active = rbc.use_limit_lin_x
|
|
|
|
sub.prop(rbc, "limit_lin_x_lower", text="Lower")
|
|
|
|
sub.prop(rbc, "limit_lin_x_upper", text="Upper")
|
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.scale_x = 0.5
|
|
|
|
sub.prop(rbc, "use_limit_lin_y", toggle=True)
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.active = rbc.use_limit_lin_y
|
|
|
|
sub.prop(rbc, "limit_lin_y_lower", text="Lower")
|
|
|
|
sub.prop(rbc, "limit_lin_y_upper", text="Upper")
|
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.scale_x = 0.5
|
|
|
|
sub.prop(rbc, "use_limit_lin_z", toggle=True)
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.active = rbc.use_limit_lin_z
|
|
|
|
sub.prop(rbc, "limit_lin_z_lower", text="Lower")
|
|
|
|
sub.prop(rbc, "limit_lin_z_upper", text="Upper")
|
|
|
|
|
|
|
|
col = layout.column(align=True)
|
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.scale_x = 0.5
|
|
|
|
sub.prop(rbc, "use_limit_ang_x", toggle=True)
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.active = rbc.use_limit_ang_x
|
|
|
|
sub.prop(rbc, "limit_ang_x_lower", text="Lower")
|
|
|
|
sub.prop(rbc, "limit_ang_x_upper", text="Upper")
|
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.scale_x = 0.5
|
|
|
|
sub.prop(rbc, "use_limit_ang_y", toggle=True)
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.active = rbc.use_limit_ang_y
|
|
|
|
sub.prop(rbc, "limit_ang_y_lower", text="Lower")
|
|
|
|
sub.prop(rbc, "limit_ang_y_upper", text="Upper")
|
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.scale_x = 0.5
|
|
|
|
sub.prop(rbc, "use_limit_ang_z", toggle=True)
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.active = rbc.use_limit_ang_z
|
|
|
|
sub.prop(rbc, "limit_ang_z_lower", text="Lower")
|
|
|
|
sub.prop(rbc, "limit_ang_z_upper", text="Upper")
|
|
|
|
|
2013-02-10 08:54:10 +00:00
|
|
|
if rbc.type == 'GENERIC_SPRING':
|
2013-01-23 05:56:56 +00:00
|
|
|
col = layout.column(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
col.label("Springs:")
|
2013-01-23 05:56:56 +00:00
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.scale_x = 0.1
|
|
|
|
sub.prop(rbc, "use_spring_x", toggle=True, text="X")
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.active = rbc.use_spring_x
|
|
|
|
sub.prop(rbc, "spring_stiffness_x", text="Stiffness")
|
|
|
|
sub.prop(rbc, "spring_damping_x")
|
2013-01-23 05:56:56 +00:00
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.scale_x = 0.1
|
|
|
|
sub.prop(rbc, "use_spring_y", toggle=True, text="Y")
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.active = rbc.use_spring_y
|
|
|
|
sub.prop(rbc, "spring_stiffness_y", text="Stiffness")
|
|
|
|
sub.prop(rbc, "spring_damping_y")
|
2013-01-23 05:56:56 +00:00
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.scale_x = 0.1
|
|
|
|
sub.prop(rbc, "use_spring_z", toggle=True, text="Z")
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-01-23 11:40:35 +00:00
|
|
|
sub.active = rbc.use_spring_z
|
|
|
|
sub.prop(rbc, "spring_stiffness_z", text="Stiffness")
|
|
|
|
sub.prop(rbc, "spring_damping_z")
|
2013-01-23 05:56:56 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__": # only for live edit.
|
|
|
|
bpy.utils.register_module(__name__)
|