Skip to content

Commit

Permalink
Back to warning for benign error
Browse files Browse the repository at this point in the history
  • Loading branch information
cgokmen committed Aug 19, 2024
1 parent 888b103 commit b734935
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion omnigibson/objects/object_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,9 @@ def _post_load(self):
self.root_prim.RemoveAPI(lazy.pxr.PhysxSchema.PhysxArticulationAPI)

if og.sim.is_playing():
raise ValueError("Cannot set articulation root API while simulation is playing!")
log.warning(
"An object's articulation root API was changed while simulation is playing. This may cause issues."
)

# Potentially add articulation root APIs and also set self collisions
root_prim = (
Expand Down

0 comments on commit b734935

Please sign in to comment.