Skip to content
Draft
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
6 changes: 5 additions & 1 deletion isaaclab_arena/assets/background_library.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,10 @@ class PackingTableBackground(LibraryBackground):
name = "packing_table"
tags = ["background"]
usd_path = f"{ARENA_NUCLEUS_DIR}/Arena/assets/background_library/packing_table/packing_table.usd"
initial_pose = Pose(position_xyz=(0.72193, -0.04727, -0.92512), rotation_xyzw=(0.0, 0.0, -0.70711, 0.70711))
initial_pose = Pose(
position_xyz=(0.72193, -0.04727, -0.92512),
rotation_xyzw=(0.0, 0.0, -0.70711, 0.70711),
)
object_min_z = -0.2

def __init__(self):
Expand Down Expand Up @@ -204,6 +207,7 @@ class MapleTableRobolab(LibraryBackground):
name = "maple_table_robolab"
tags = ["background", "robolab"]
usd_path = f"{ARENA_NUCLEUS_DIR}/Arena/assets/object_library/srl_robolab_assets/scenes/maple_table.usda"
spawn_cfg_addon = {"rigid_props": sim_utils.RigidBodyPropertiesCfg(kinematic_enabled=True)}
object_min_z = -0.05

def __init__(self):
Expand Down
11 changes: 11 additions & 0 deletions isaaclab_arena/tasks/gear_assembly/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Copyright (c) 2026, The Isaac Lab Arena Project Developers (https://github.com/isaac-sim/IsaacLab-Arena/blob/main/CONTRIBUTORS.md).
# All rights reserved.
#
# SPDX-License-Identifier: Apache-2.0

"""Arena Gear Assembly task package."""

from .assets import * # noqa: F403
from .rewards import * # noqa: F403
from .specs import * # noqa: F403
from .task import * # noqa: F403
Loading
Loading