Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/demos/mpm/newton_mpm_granular.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ class GranularSceneCfg(InteractiveSceneCfg):

ground = AssetBaseCfg(
prim_path="/World/Ground",
spawn=sim_utils.GroundPlaneCfg(size=(12.0, 12.0), color=(0.30, 0.30, 0.30)),
spawn=sim_utils.GroundPlaneCfg(),
)

dome_light = AssetBaseCfg(
Expand Down
2 changes: 1 addition & 1 deletion scripts/demos/mpm/newton_mpm_twoway_coupling.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ class CoupledSceneCfg(InteractiveSceneCfg):

ground = AssetBaseCfg(
prim_path="/World/Ground",
spawn=sim_utils.GroundPlaneCfg(size=(12.0, 12.0), color=(0.30, 0.30, 0.30)),
spawn=sim_utils.GroundPlaneCfg(),
init_state=AssetBaseCfg.InitialStateCfg(pos=(0.0, 0.0, -wall_t)),
)
dome_light = AssetBaseCfg(
Expand Down
2 changes: 1 addition & 1 deletion scripts/demos/mpm/snowball_smash.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ class SnowballSmashSceneCfg(InteractiveSceneCfg):
# the MPM model view.
ground = AssetBaseCfg(
prim_path="/World/Ground",
spawn=sim_utils.GroundPlaneCfg(size=(12.0, 12.0), color=(0.32, 0.34, 0.38)),
spawn=sim_utils.GroundPlaneCfg(),
)

# The co-located hidden kinematic slab belongs only to the MPM entry.
Expand Down
Loading