Skip to content

Commit

Permalink
Bumping Isaac version to 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JCarosella committed Jun 17, 2024
1 parent c00d8c7 commit 98986c2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG ISAAC_SIM_VERSION=2023.1.1
ARG ISAAC_SIM_VERSION=4.0.0

# Download base image
FROM nvcr.io/nvidia/isaac-sim:${ISAAC_SIM_VERSION}
Expand Down
6 changes: 5 additions & 1 deletion launch/andino_isaac.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,18 @@
from xacro import process_file

def search_isaac_install_path():
ISAAC_VERSION = "isaac_sim-2023.1.1"
ISAAC_VERSION = "isaac-sim-4.0.0"
isaac_install_path = ""
# Check the install path for a non-Docker environment
user_home_path = os.path.expanduser("~")
for dirpath, dirnames, _ in os.walk(user_home_path):
for dirname in dirnames:
if dirname == ISAAC_VERSION:
isaac_install_path = os.path.join(dirpath, ISAAC_VERSION)
break
# Keep the first found path
if isaac_install_path:
break
# If not found, check if the install path corresponds to one of a Docker environment
if isaac_install_path == "":
ISAAC_DOCKER_INSTALL_PATH = "/isaac-sim"
Expand Down
5 changes: 0 additions & 5 deletions tools/isaac_launch_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,6 @@
try:
carb.log_info("Loading world please wait")
open_stage(args.world_file)
# Wait two frames so that stage starts loading
simulation_app.update()
simulation_app.update()
while is_stage_loading():
simulation_app.update()
world_settings = {"physics_dt": 1.0 / 60.0, "stage_units_in_meters": 1.0, "rendering_dt": 1.0 / 60.0}
world = World(**world_settings)
carb.log_info("World loaded")
Expand Down
4 changes: 2 additions & 2 deletions tools/run_isaac_manually.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
RMW_IMPLEMENTATION=rmw_fastrtps_cpp
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/$(whoami)/.local/share/ov/pkg/isaac_sim-2023.1.1/exts/omni.isaac.ros2_bridge/humble/lib
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/$(whoami)/.local/share/ov/pkg/isaac-sim-4.0.0/exts/omni.isaac.ros2_bridge/humble/lib


/home/$(whoami)/.local/share/ov/pkg/isaac_sim-2023.1.1/isaac-sim.sh
/home/$(whoami)/.local/share/ov/pkg/isaac-sim-4.0.0/isaac-sim.sh

0 comments on commit 98986c2

Please sign in to comment.