Skip to content
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,4 @@ assets/models
modelos_os/*
hf_upload_env
PDI_3DUW
path_planner
3 changes: 2 additions & 1 deletion exts/omni.ext.patosim/omni/ext/patosim/robots.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
# Standard imports
import numpy as np
import os
from pathlib import Path
import math
#from typing import List, Type, Tuple, Union
from typing import Optional, Sequence, Union, Dict, List, Tuple, Type, List
Expand Down Expand Up @@ -481,7 +482,7 @@ class OceanSimROVRobot(Robot):
teleop_velocity_assist_gain: float = 1.0

usd_relative_path: str = "bluerov/BROV_low.usd"
fallback_assets_root: str = "/mnt/external/isaac/MOD_patosim/assets/models"
fallback_assets_root: str = Path(__file__).resolve().parents[5] / "assets" / "models"

initial_translation: Tuple[float, float, float] = (-2.0, 0.0, -0.8)
initial_orientation_euler_deg: Tuple[float, float, float] = (0.0, 0.0, 0.0)
Expand Down