Skip to content

Commit 11c1d17

Browse files
committed
clean up
1 parent 8bc0bb1 commit 11c1d17

File tree

35 files changed

+1066
-921
lines changed

35 files changed

+1066
-921
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,3 @@ _build
6363
**/runs/*
6464
**/logs/*
6565
**/recordings/*
66-
67-

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# For Heterogeneous Agent Reinforcement Learning
22

33
<!-- ![GIF 1](withoutpolicy.gif) ![GIF 2](withpolicy.gif) -->
4-
<!--
4+
<!--
55
<div style="display: flex; justify-content: space-around;">
66
<img src="withoutpolicy.gif" width="45%">
77
<img src="withpolicy.gif" width="45%">

assets/instanceable.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Copyright (c) 2022-2025, The Isaac Lab Project Developers.
2+
# All rights reserved.
3+
#
4+
# SPDX-License-Identifier: BSD-3-Clause
5+
16
# Copyright (c) 2018-2022, NVIDIA Corporation
27
# All rights reserved.
38
#
@@ -126,17 +131,17 @@ def convert_asset_instanceable(asset_usd_path, source_prim_path, save_as_path=No
126131
omni.usd.get_context().save_stage()
127132
else:
128133
omni.usd.get_context().save_as_stage(save_as_path)
129-
134+
135+
130136
# to run this code you must open Isaac Sim and run the following code in the Python console
131137
# go to window -> Python Console
132138
# then copy and paste the ALL OF THIS CODE IN THIS DOCUMENT
133139
# make sure to change the paths to the correct paths on your computer
134140
# this code will convert the grandPiano.usd file to an instanceable asset
135-
# in saac 4.2 old documention you can learn more:
141+
# in saac 4.2 old documentation you can learn more:
136142
# https://docs.omniverse.nvidia.com/isaacsim/latest/isaac_lab_tutorials/tutorial_instanceable_assets.html#modifying-existing-assets
137143
convert_asset_instanceable(
138144
asset_usd_path="/home/frutiger/Downloads/grandPiano/10384_GrandPiano.usd",
139145
source_prim_path="/World",
140-
save_as_path="/home/frutiger/Downloads/grandPiano/GrandPiano_instanceable.usd"
146+
save_as_path="/home/frutiger/Downloads/grandPiano/GrandPiano_instanceable.usd",
141147
)
142-

docs/source/refs/snippets/tutorial_modify_direct_rl_env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# fmt: off
77

88
# [start-init-import]
9-
from .h1_env import H1Env, H1EnvCfg
9+
from .h1_env import H1EnvCfg
1010
# [end-init-import]
1111

1212
# [start-init-register]

run_training.sh

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

source/extensions/omni.isaac.lab_tasks/omni/isaac/lab_tasks/direct/anymal_c_multi_agent/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2022-2024, The Isaac Lab Project Developers.
1+
# Copyright (c) 2022-2025, The Isaac Lab Project Developers.
22
# All rights reserved.
33
#
44
# SPDX-License-Identifier: BSD-3-Clause
@@ -10,7 +10,7 @@
1010
import gymnasium as gym
1111

1212
from . import agents
13-
from .anymal_c_multi_agent import AnymalCMultiAgentBar,AnymalCMultiAgentFlatEnvCfg, AnymalCMultiAgentRoughEnvCfg
13+
from .anymal_c_multi_agent import AnymalCMultiAgentBar, AnymalCMultiAgentFlatEnvCfg, AnymalCMultiAgentRoughEnvCfg
1414

1515
##
1616
# Register Gym environments.
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2022-2024, The Isaac Lab Project Developers.
1+
# Copyright (c) 2022-2025, The Isaac Lab Project Developers.
22
# All rights reserved.
33
#
44
# SPDX-License-Identifier: BSD-3-Clause

source/extensions/omni.isaac.lab_tasks/omni/isaac/lab_tasks/direct/anymal_c_multi_agent/agents/rsl_rl_ppo_cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2022-2024, The Isaac Lab Project Developers.
1+
# Copyright (c) 2022-2025, The Isaac Lab Project Developers.
22
# All rights reserved.
33
#
44
# SPDX-License-Identifier: BSD-3-Clause

0 commit comments

Comments
 (0)