moisesjpelaez - Oimo Physics

This commit is contained in:
Onek8 2025-05-11 19:46:28 +00:00
parent 68900fb992
commit 2732210fc9

View File

@ -2749,20 +2749,20 @@ class LNX_PT_BulletDebugDrawingPanel(bpy.types.Panel):
layout.use_property_decorate = False layout.use_property_decorate = False
wrd = bpy.data.worlds['Lnx'] wrd = bpy.data.worlds['Lnx']
if wrd.lnx_physics_engine != 'Bullet': if wrd.lnx_physics_engine != 'Bullet' and wrd.lnx_physics_engine != 'Oimo':
row = layout.row() row = layout.row()
row.alert = True row.alert = True
row.label(text="Physics debug drawing is only supported for the Bullet physics engine") row.label(text="Physics debug drawing is only supported for the Bullet and Oimo physics engines")
col = layout.column(align=False) col = layout.column(align=False)
col.prop(wrd, "lnx_bullet_dbg_draw_wireframe") col.prop(wrd, "lnx_physics_dbg_draw_wireframe")
col.prop(wrd, "lnx_bullet_dbg_draw_raycast") col.prop(wrd, "lnx_physics_dbg_draw_raycast")
col.prop(wrd, "lnx_bullet_dbg_draw_aabb") col.prop(wrd, "lnx_physics_dbg_draw_aabb")
col.prop(wrd, "lnx_bullet_dbg_draw_contact_points") col.prop(wrd, "lnx_physics_dbg_draw_contact_points")
col.prop(wrd, "lnx_bullet_dbg_draw_constraints") col.prop(wrd, "lnx_physics_dbg_draw_constraints")
col.prop(wrd, "lnx_bullet_dbg_draw_constraint_limits") col.prop(wrd, "lnx_physics_dbg_draw_constraint_limits")
col.prop(wrd, "lnx_bullet_dbg_draw_normals") col.prop(wrd, "lnx_physics_dbg_draw_normals")
col.prop(wrd, "lnx_bullet_dbg_draw_axis_gizmo") col.prop(wrd, "lnx_physics_dbg_draw_axis_gizmo")
def draw_custom_node_menu(self, context): def draw_custom_node_menu(self, context):
"""Extension of the node context menu. """Extension of the node context menu.