Skip to content

Commit dcde70d

Browse files
authored
Replace Makefile with Python script (#5)
* REFACTOR: organize data directory to use Isaac Lab directory structure * REFACTOR: replace Makefile with Python scripts * UPDATE: package version
1 parent 3775835 commit dcde70d

File tree

89 files changed

+684
-562
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+684
-562
lines changed

.flake8

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[flake8]
2+
max-line-length=120

.gitignore

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,9 @@
77
**/*.pb
88

99
# Onshape-to-robot
10-
ros2/build/
11-
ros2/install/
12-
ros2/log/
13-
data/mjcf/assets/*
14-
!data/mjcf/assets/merged
15-
data/urdf/assets/*
16-
!data/urdf/assets/merged
10+
**/assets/*
1711

1812
# Omniverse USD
19-
data/usd/Props/
20-
data/usd/.asset_hash
21-
data/usd/config.yaml
13+
**/usd/Props/
14+
**/usd/.asset_hash
15+
**/usd/config.yaml

Makefile

Lines changed: 0 additions & 27 deletions
This file was deleted.

README.md

Lines changed: 16 additions & 236 deletions

berkeley_humanoid_lite_assets/robots/berkeley_humanoid_lite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
HUMANOID_LITE_BIPED_CFG = ArticulationCfg(
4242
spawn=sim_utils.UsdFileCfg(
43-
usd_path=f"{ISAACLAB_ASSET_DIR}/usd/berkeley_humanoid_lite_biped.usd",
43+
usd_path=f"{ISAACLAB_ASSET_DIR}/robots/berkeley_humanoid/berkeley_humanoid_lite/usd/berkeley_humanoid_lite_biped.usd",
4444
activate_contact_sensors=True,
4545
rigid_props=sim_utils.RigidBodyPropertiesCfg(
4646
disable_gravity=False,
@@ -105,7 +105,7 @@
105105

106106
HUMANOID_LITE_CFG = ArticulationCfg(
107107
spawn=sim_utils.UsdFileCfg(
108-
usd_path=f"{ISAACLAB_ASSET_DIR}/usd/berkeley_humanoid_lite.usd",
108+
usd_path=f"{ISAACLAB_ASSET_DIR}/robots/berkeley_humanoid/berkeley_humanoid_lite/usd/berkeley_humanoid_lite.usd",
109109
activate_contact_sensors=True,
110110
rigid_props=sim_utils.RigidBodyPropertiesCfg(
111111
disable_gravity=False,
-14.1 KB
Binary file not shown.
-2 MB
Binary file not shown.
-2 MB
Binary file not shown.
-2 MB
Binary file not shown.
-2 MB
Binary file not shown.

0 commit comments

Comments
 (0)