Topic Description
I am trying to animate People by use query_shortest_path(start_pos, end_pos)
to get the path between two points in the navmesh. I tried to follow the solution provided on a related topic where someone faced a similar issue. However this does not work for me. I followed the documentation on API Commands. According to the above pages and other examples, after acquiring the interface using nav.acquire_interface()
you should bake it. However, even after following the instructions, the baking process still fails. Because of this, I suspect I get a NoneType
obejct when I call inav.get_navmesh()
. Since this should not return None
, I am unable to use the path fucntions. I have share the script that I am trying to run along with the full terminal log. In the end, it can be seen that the baking is unsuccessful and navmesh is None type.
What is the correct way to get the navmesh in order to use path functions such as the query_shortest_path(start_pos, end_pos)
?
System configuration
Isaac Sim Version: 4.2.0
Operating System: Ubuntu 22.04
GPU Model: NVIDIA GeForce RTX 4090
GPU Driver Version: 550.107.02
CUDA Version: 12.4
Script
import carb
# Starting Simulation
from isaacsim import SimulationApp
config = {
"width": "800",
"height": "600",
"headless": False
}
simulation_app = SimulationApp(config)
from omni.isaac.core.utils.extensions import enable_extension
EXTENSIONS_PEOPLE = [
'omni.anim.people',
'omni.anim.navigation.bundle',
'omni.anim.timeline',
'omni.anim.graph.bundle',
'omni.anim.graph.core',
'omni.anim.graph.ui',
'omni.anim.retarget.bundle',
'omni.anim.retarget.core',
'omni.anim.retarget.ui',
'omni.kit.scripting',
'omni.graph.io',
'omni.anim.curve.core',
]
for ext_people in EXTENSIONS_PEOPLE:
enable_extension(ext_people)
simulation_app.update()
import os
import omni
import omni.kit
from omni.isaac.nucleus import get_assets_root_path
from omni.isaac.core import World
import omni.anim.navigation.core as nav
from pxr import Sdf
class Simulator():
def __init__(self) -> None:
# Get path to asset directory
self.local_root_path = os.path.dirname(os.path.abspath(__file__))
assets_root_path = get_assets_root_path()
file_path = self.local_root_path + "/assets/empty_world.usd"
omni.usd.get_context().open_stage(file_path)
self.timeline = omni.timeline.get_timeline_interface()
self.world = World(stage_units_in_meters=1.0)
self.world.scene.add_default_ground_plane()
stage = omni.usd.get_context().get_stage()
inav = nav.acquire_interface()
omni.kit.commands.execute("CreateNavMeshVolumeCommand",
parent_prim_path=Sdf.Path("/World"),
layer=stage.GetRootLayer()
)
# Bake navmesh
mesh_status = inav.start_navmesh_baking()
if mesh_status:
print("mesh baking successful")
else:
print("mesh baking unsuccessful")
navmesh = inav.get_navmesh()
if navmesh:
print("navmesh is not None")
else:
print("navmesh is None")
def run(self) -> None:
self.world.reset()
while simulation_app.is_running():
self.world.step(render=True)
if self.world.is_playing():
if self.world.current_time_step_index == 0:
self.world.reset()
simulation_app.close()
if __name__ == "__main__":
sim = Simulator()
sim.run()
Terminal Log
Starting kit application with the following args: ['/home/lalatendu/isaac-sim-4.2/pkg/isaac-sim-4.2.0/exts/omni.isaac.kit/omni/isaac/kit/simulation_app.py', '/home/lalatendu/isaac-sim-4.2/pkg/isaac-sim-4.2.0/apps/omni.isaac.sim.python.kit', '--/app/tokens/exe-path=/home/lalatendu/isaac-sim-4.2/pkg/isaac-sim-4.2.0/kit', '--/persistent/app/viewport/displayOptions=3094', '--/rtx/materialDb/syncLoads=True', '--/rtx/hydra/materialSyncLoads=True', '--/omni.kit.plugin/syncUsdLoads=True', '--/app/renderer/resolution/width=800', '--/app/renderer/resolution/height=600', '--/app/window/width=1440', '--/app/window/height=900', '--/renderer/multiGpu/enabled=True', '--/app/fastShutdown=True', '--ext-folder', '/home/lalatendu/isaac-sim-4.2/pkg/isaac-sim-4.2.0/exts', '--ext-folder', '/home/lalatendu/isaac-sim-4.2/pkg/isaac-sim-4.2.0/apps', '--/physics/cudaDevice=0', '--portable']
Passing the following args to the base kit application: []
[Info] [carb] Logging to file: /home/scai/.local/share/ov/pkg/isaac-sim-4.2.0/kit/logs/Kit/Isaac-Sim/4.2/kit_20241106_120211.log
2024-11-06 11:02:11 [0ms] [Warning] [omni.kit.app.plugin] No crash reporter present, dumps uploading isn't available.
[0.077s] [ext: omni.blobkey-1.1.2] startup
[0.078s] [ext: omni.kit.async_engine-0.0.1] startup
[0.368s] [ext: omni.stats-1.0.1] startup
[0.369s] [ext: omni.datastore-0.0.0] startup
[0.372s] [ext: omni.client-1.2.0] startup
[0.388s] [ext: omni.ujitso.default-1.0.0] startup
[0.388s] [ext: omni.gpu_foundation.shadercache.vulkan-1.0.0] startup
[0.391s] [ext: omni.hsscclient-1.1.1] startup
[0.391s] [ext: omni.assets.plugins-0.0.0] startup
[0.392s] [ext: omni.gpu_foundation-0.0.0] startup
[0.396s] [ext: carb.windowing.plugins-1.0.0] startup
[0.400s] [ext: omni.kit.renderer.init-0.0.0] startup
|---------------------------------------------------------------------------------------------|
| Driver Version: 550.107.02 | Graphics API: Vulkan
|=============================================================================================|
| GPU | Name | Active | LDA | GPU Memory | Vendor-ID | LUID |
| | | | | | Device-ID | UUID |
| | | | | | Bus-ID | |
|---------------------------------------------------------------------------------------------|
| 0 | NVIDIA GeForce RTX 4090 | Yes: 0 | | 23028 MB | 10de | 0 |
| | | | | | 2684 | 8d35582a.. |
| | | | | | 1 | |
|---------------------------------------------------------------------------------------------|
| 1 | NVIDIA GeForce RTX 4090 | Yes: 1 | | 24564 MB | 10de | 0 |
| | | | | | 2684 | 8a26c998.. |
| | | | | | 2 | |
|=============================================================================================|
| OS: 22.04.5 LTS (Jammy Jellyfish) ubuntu, Version: 22.04.5, Kernel: 6.8.0-45-generic
| XServer Vendor: The X.Org Foundation, XServer Version: 12101004 (1.21.1.4)
| Processor: 13th Gen Intel(R) Core(TM) i9-13900K | Cores: 24 | Logical: 48
|---------------------------------------------------------------------------------------------|
| Total Memory (MB): 128549 | Free Memory: 119617
| Total Page/Swap (MB): 2047 | Free Page/Swap: 2047
|---------------------------------------------------------------------------------------------|
2024-11-06 11:02:12 [766ms] [Warning] [gpu.foundation.plugin] ECC is enabled on physical device 0
2024-11-06 11:02:12 [766ms] [Warning] [gpu.foundation.plugin] IOMMU is enabled.
[1.035s] [ext: omni.kit.pipapi-0.0.0] startup
[1.036s] [ext: omni.kit.pip_archive-0.0.0] startup
[1.036s] [ext: omni.pip.compute-1.4.0] startup
[1.037s] [ext: omni.pip.cloud-1.1.3] startup
[1.039s] [ext: omni.isaac.core_archive-2.3.0] startup
[1.039s] [ext: omni.materialx.libs-1.0.4] startup
[1.043s] [ext: omni.isaac.ml_archive-2.0.1] startup
[1.044s] [ext: omni.kit.telemetry-0.5.0] startup
[1.061s] [ext: omni.usd.config-1.0.4] startup
[1.064s] [ext: omni.gpucompute.plugins-0.0.0] startup
[1.064s] [ext: omni.usd.libs-1.0.1] startup
[1.113s] [ext: omni.iray.libs-0.0.0] startup
[1.116s] [ext: omni.mdl.neuraylib-0.2.8] startup
[1.117s] [ext: omni.mdl-55.0.1] startup
[1.130s] [ext: omni.kit.usd.mdl-1.0.1] startup
[1.206s] [ext: omni.kit.loop-isaac-1.2.0] startup
[1.206s] [ext: omni.kit.test-1.1.0] startup
[1.239s] [ext: omni.appwindow-1.1.8] startup
[1.862s] [ext: omni.kit.renderer.core-1.0.2] startup
[8.770s] [ext: omni.kit.renderer.capture-0.0.0] startup
[8.771s] [ext: omni.kit.renderer.imgui-1.0.1] startup
[8.824s] [ext: omni.ui-2.25.22] startup
[8.830s] [ext: omni.kit.mainwindow-1.0.3] startup
[8.831s] [ext: carb.audio-0.1.0] startup
[8.832s] [ext: omni.uiaudio-1.0.0] startup
[8.833s] [ext: omni.kit.uiapp-0.0.0] startup
[8.833s] [ext: omni.usd.schema.isaac-2.1.0] startup
[8.838s] [ext: omni.usd.schema.audio-0.0.0] startup
[8.840s] [ext: omni.usd.schema.anim-0.0.0] startup
[8.852s] [ext: omni.usd.schema.geospatial-0.0.0] startup
[8.854s] [ext: omni.usd.schema.semantics-0.0.0] startup
[8.855s] [ext: omni.usd.schema.omnigraph-1.0.0] startup
[8.859s] [ext: omni.anim.navigation.schema-106.1.0] startup
[8.861s] [ext: omni.usd.schema.scene.visualization-2.0.2] startup
[8.861s] [ext: omni.usd.schema.omniscripting-1.0.0] startup
[8.864s] [ext: omni.anim.graph.schema-106.1.0] startup
[8.868s] [ext: omni.usd.schema.physx-106.1.9] startup
[8.885s] [ext: omni.usd.schema.forcefield-106.1.9] startup
[8.889s] [ext: omni.graph.exec-0.9.4] startup
[8.889s] [ext: omni.kit.usd_undo-0.1.8] startup
[8.889s] [ext: omni.kit.actions.core-1.0.0] startup
[8.890s] [ext: omni.kit.exec.core-0.13.4] startup
[8.892s] [ext: omni.usd_resolver-1.0.0] startup
[8.894s] [ext: omni.kit.commands-1.4.9] startup
[8.896s] [ext: omni.activity.core-1.0.1] startup
[8.897s] [ext: omni.usd.core-1.4.1] startup
[8.898s] [ext: omni.resourcemonitor-105.0.1] startup
[8.899s] [ext: omni.kit.window.popup_dialog-2.0.24] startup
[8.902s] [ext: omni.timeline-1.0.10] startup
[8.903s] [ext: omni.kit.widget.nucleus_connector-1.1.9] startup
[8.904s] [ext: usdrt.scenegraph-7.5.0] startup
[8.929s] [ext: omni.kit.audiodeviceenum-1.0.1] startup
[8.930s] [ext: omni.hydra.usdrt_delegate-7.5.1] startup
[8.938s] [ext: omni.hydra.scene_delegate-0.3.3] startup
[8.941s] [ext: omni.usd-1.12.2] startup
[8.967s] [ext: omni.kit.menu.core-1.0.4] startup
[8.967s] [ext: omni.kit.collaboration.telemetry-1.0.0] startup
[8.977s] [ext: omni.kit.property.adapter.core-1.0.1] startup
[8.980s] [ext: omni.kit.menu.utils-1.5.27] startup
[8.986s] [ext: omni.kit.clipboard-1.0.4] startup
[8.986s] [ext: omni.kit.collaboration.channel_manager-1.0.12] startup
[8.987s] [ext: omni.kit.property.adapter.usd-1.0.1] startup
[8.988s] [ext: omni.kit.widget.options_menu-1.1.6] startup
[8.989s] [ext: omni.kit.widget.graph-1.12.15] startup
[8.992s] [ext: omni.kit.widget.searchfield-1.1.8] startup
[8.993s] [ext: omni.kit.widget.filter-1.1.4] startup
[8.993s] [ext: omni.kit.property.adapter.fabric-1.0.1] startup
[8.994s] [ext: omni.ui_query-1.1.4] startup
[8.994s] [ext: omni.kit.window.extensions-1.4.11] startup
[8.997s] [ext: omni.kit.usd.layers-2.1.36] startup
[9.002s] [ext: omni.kit.widget.context_menu-1.2.2] startup
[9.002s] [ext: omni.hydra.rtx.shadercache.vulkan-1.0.0] startup
[9.003s] [ext: omni.kit.notification_manager-1.0.9] startup
[9.004s] [ext: omni.kit.hotkeys.core-1.3.5] startup
[9.004s] [ext: omni.kit.context_menu-1.8.1] startup
[9.005s] [ext: omni.kit.widget.prompt-1.0.7] startup
[9.006s] [ext: omni.kit.helper.file_utils-0.1.8] startup
[9.007s] [ext: omni.kit.widget.nucleus_info-1.0.2] startup
[9.008s] [ext: omni.kit.widget.filebrowser-2.10.51] startup
[9.010s] [ext: omni.kit.search_core-1.0.5] startup
[9.011s] [ext: omni.kit.widget.path_field-2.0.10] startup
[9.012s] [ext: omni.ui.scene-1.10.3] startup
[9.014s] [ext: omni.kit.widget.search_delegate-1.0.5] startup
[9.015s] [ext: omni.kit.widget.options_button-1.0.3] startup
[9.015s] [ext: omni.kit.widget.browser_bar-2.0.10] startup
[9.016s] [ext: omni.volume-0.5.0] startup
[9.017s] [ext: omni.kit.window.filepicker-2.10.40] startup
[9.024s] [ext: omni.ujitso.processor.texture-1.0.0] startup
[9.024s] [ext: omni.kit.window.file_exporter-1.0.30] startup
[9.025s] [ext: omni.ujitso.client-0.0.0] startup
[9.026s] [ext: omni.kit.widget.stage-2.11.2] startup
[9.031s] [ext: omni.kit.widget.live_session_management.ui-1.0.1] startup
[9.032s] [ext: omni.kit.collaboration.presence_layer-1.0.9] startup
[9.034s] [ext: omni.hydra.rtx-1.0.0] startup
[9.044s] [ext: omni.inspect-1.0.1] startup
[9.045s] [ext: omni.kit.widget.searchable_combobox-1.0.6] startup
[9.045s] [ext: omni.kit.window.file_importer-1.1.12] startup
[9.046s] [ext: omni.kit.stage_template.core-1.1.22] startup
[9.046s] [ext: omni.kit.widget.settings-1.2.2] startup
[9.047s] [ext: omni.kit.window.file-1.3.54] startup
[9.049s] [ext: omni.kit.window.drop_support-1.0.3] startup
[9.049s] [ext: omni.kit.window.content_browser_registry-0.0.6] startup
[9.049s] [ext: omni.kit.window.preferences-1.6.0] startup
[9.054s] [ext: omni.kit.window.content_browser-2.9.18] startup
[9.062s] [ext: omni.kit.widget.live_session_management-1.2.20] startup
[9.064s] [ext: omni.kit.widget.text_editor-1.0.2] startup
[9.064s] [ext: omni.kit.hydra_texture-1.3.9] startup
[9.066s] [ext: omni.kit.viewport.legacy_gizmos-1.1.0] startup
[9.068s] [ext: omni.kit.raycast.query-1.0.5] startup
[9.071s] [ext: omni.kit.material.library-1.5.6] startup
[9.075s] [ext: omni.kit.widget.viewport-106.1.0] startup
[9.077s] [ext: omni.kit.viewport.registry-104.0.6] startup
[9.077s] [ext: omni.hydra.engine.stats-1.0.2] startup
[9.079s] [ext: omni.kit.widget.highlight_label-1.0.2] startup
[9.079s] [ext: omni.kit.viewport.window-107.0.6] startup
[9.089s] [ext: omni.kit.window.property-1.11.3] startup
[9.090s] [ext: omni.graph.core-2.179.2] startup
[9.092s] [ext: omni.graph.tools-1.79.0] startup
[9.104s] [ext: omni.kit.viewport.utility-1.0.17] startup
[9.104s] [ext: omni.kit.property.usd-4.2.8] startup
[9.109s] [ext: omni.debugdraw-0.1.3] startup
[9.111s] [ext: omni.graph-1.140.0] startup
[9.184s] [ext: omni.graph.ui-1.70.2] startup
[9.200s] [ext: omni.kvdb-106.1.9] startup
[9.204s] [ext: omni.graph.image.core-0.4.5] startup
[9.206s] [ext: omni.localcache-106.1.9] startup
[9.207s] [ext: omni.graph.image.nodes-1.1.0] startup
[9.210s] [ext: omni.usdphysics-106.1.9] startup
[9.218s] [ext: omni.physx.foundation-106.1.9] startup
[9.220s] [ext: omni.convexdecomposition-106.1.9] startup
[9.223s] [ext: omni.graph.nodes-1.146.1] startup
[9.229s] [ext: omni.physx.cooking-106.1.9] startup
[9.237s] [ext: omni.kit.primitive.mesh-1.0.17] startup
[9.239s] [ext: omni.physx-106.1.9] startup
[9.247s] [ext: omni.kit.stage_templates-1.2.5] startup
[9.249s] [ext: omni.isaac.version-1.1.0] startup
[9.250s] [ext: omni.kit.widget.material_preview-1.0.16] startup
[9.251s] [ext: omni.isaac.nucleus-0.3.1] startup
[9.252s] [ext: omni.physics.tensors-106.1.9] startup
[9.256s] [ext: omni.physx.stageupdate-106.1.9] startup
[9.258s] [ext: omni.graph.action_core-1.1.6] startup
[9.260s] [ext: omni.warp.core-1.2.1] startup
[9.321s] [ext: omni.physx.tensors-106.1.9] startup
[9.324s] [ext: omni.graph.scriptnode-1.20.1] startup
[9.325s] [ext: omni.kit.manipulator.viewport-107.0.0] startup
[9.326s] [ext: omni.graph.action_nodes-1.24.0] startup
[9.332s] [ext: omni.kit.ui_test-1.3.2] startup
[9.336s] [ext: omni.isaac.core-3.19.5] startup
[10.167s] [ext: omni.graph.visualization.nodes-2.1.1] startup
[10.172s] [ext: omni.graph.action-1.102.1] startup
[10.172s] [ext: omni.kit.window.cursor-1.1.2] startup
[10.174s] [ext: omni.isaac.ui-0.16.0] startup
[10.179s] [ext: omni.kit.viewport.menubar.core-106.1.0] startup
[10.191s] [ext: omni.kit.graph.delegate.default-1.2.2] startup
[10.192s] [ext: omni.syntheticdata-0.6.9] startup
[10.209s] [ext: omni.kit.graph.usd.commands-1.3.1] startup
[10.211s] [ext: omni.kit.graph.editor.core-1.5.3] startup
[10.213s] [ext: omni.kit.numpy.common-0.1.2] startup
[10.214s] [ext: omni.warp-1.2.1] startup
[10.219s] [ext: omni.kit.window.material_graph-1.8.18] startup
[10.259s] [ext: omni.isaac.dynamic_control-1.3.8] startup
[10.274s] [ext: omni.replicator.core-1.11.20] startup
2024-11-06 11:02:22 [10,239ms] [Warning] [omni.replicator.core.scripts.annotators] Annotator PostProcessDispatch is already registered, overwriting annotator template
Warp 1.2.1 initialized:
CUDA Toolkit 11.8, Driver 12.4
Devices:
"cpu" : "x86_64"
"cuda:0" : "NVIDIA GeForce RTX 4090" (22 GiB, sm_89, mempool enabled)
"cuda:1" : "NVIDIA GeForce RTX 4090" (24 GiB, sm_89, mempool enabled)
CUDA peer access:
Not supported
Kernel cache:
/home/lalatendu/.cache/warp/1.2.1
[10.386s] [ext: omni.isaac.lula-3.0.1] startup
[10.392s] [ext: omni.isaac.surface_gripper-1.0.1] startup
[10.394s] [ext: omni.isaac.core_nodes-1.16.3] startup
[10.407s] [ext: omni.isaac.motion_generation-7.1.0] startup
[10.421s] [ext: omni.isaac.manipulators-2.1.0] startup
[10.424s] [ext: omni.isaac.franka-0.4.1] startup
[10.427s] [ext: omni.kit.graph.widget.variables-2.1.0] startup
[10.430s] [ext: omni.kit.graph.delegate.modern-1.10.6] startup
[10.433s] [ext: omni.isaac.cortex-0.3.9] startup
[10.435s] [ext: omni.graph.window.core-1.113.1] startup
[10.447s] [ext: omni.isaac.wheeled_robots-2.3.3] startup
[10.456s] [ext: omni.isaac.cortex.sample_behaviors-1.0.6] startup
[10.458s] [ext: omni.graph.window.generic-1.26.0] startup
[10.467s] [ext: omni.isaac.menu-0.7.3] startup
[10.479s] [ext: omni.kit.widget.live-2.1.8] startup
[10.485s] [ext: omni.kit.actions.window-1.1.1] startup
[10.494s] [ext: omni.kit.widget.cache_indicator-2.0.10] startup
[10.558s] [ext: omni.kit.hotkeys.window-1.4.5] startup
2024-11-06 11:02:22 [10,498ms] [Warning] [omni.kit.widget.cache_indicator.cache_state_menu] Unable to detect Omniverse Cache Server. File /home/lalatendu/.nvidia-omniverse/config/omniverse.toml is not found. Consider installing it for better IO performance.
[10.565s] [ext: omni.kit.ui.actions-1.0.2] startup
[10.566s] [ext: omni.kit.widget.stage_icons-1.0.5] startup
[10.568s] [ext: omni.kit.menu.common-1.1.7] startup
[10.573s] [ext: omni.kit.selection-0.1.4] startup
[10.575s] [ext: omni.isaac.kit-1.13.2] startup
[10.575s] [ext: omni.isaac.block_world-1.0.0] startup
[10.579s] [ext: omni.kit.window.stage-2.5.10] startup
[10.584s] [ext: omni.isaac.debug_draw-1.1.0] startup
[10.589s] [ext: omni.kit.menu.edit-1.1.24] startup
[10.593s] [ext: omni.kit.menu.file-1.1.14] startup
[10.596s] [ext: omni.kit.profiler.window-2.2.3] startup
[10.606s] [ext: omni.kit.menu.stage-1.2.5] startup
[10.608s] [ext: omni.isaac.occupancy_map-1.0.3] startup
[10.617s] [ext: omni.importer.mjcf-1.1.1] startup
[10.633s] [ext: omni.graph.window.action-1.28.0] startup
[10.642s] [ext: omni.kit.property.camera-1.0.8] startup
[10.645s] [ext: omni.kit.property.light-1.0.10] startup
[10.651s] [ext: omni.kit.property.geometry-1.3.1] startup
[10.654s] [ext: omni.hydra.scene_api-0.1.2] startup
[10.660s] [ext: omni.kit.property.audio-1.0.14] startup
[10.663s] [ext: omni.kit.property.render-1.1.2] startup
[10.665s] [ext: omni.kit.property.transform-1.5.9] startup
[10.669s] [ext: omni.kit.property.material-1.10.8] startup
[10.674s] [ext: omni.kit.widget.layers-1.8.0] startup
[10.681s] [ext: omni.kit.property.isaac-0.2.3] startup
[10.683s] [ext: omni.kit.property.bundle-1.3.1] startup
[10.684s] [ext: omni.sensors.nv.common-1.2.2-isaac-1] startup
[10.691s] [ext: omni.kit.property.layer-1.1.8] startup
[10.692s] [ext: omni.kit.stage_column.payload-2.0.0] startup
[10.693s] [ext: omni.isaac.scene_blox-0.1.2] startup
[10.694s] [ext: omni.sensors.nv.materials-1.2.1-isaac-1] startup
[10.696s] [ext: omni.sensors.nv.wpm-1.2.1-isaac-1] startup
[10.697s] [ext: omni.kit.viewport.actions-106.0.2] startup
[10.699s] [ext: omni.sensors.nv.lidar-1.2.2-isaac-1] startup
[10.703s] [ext: omni.sensors.nv.radar-1.2.1-isaac-1] startup
[10.706s] [ext: omni.kit.viewport.menubar.display-107.0.2] startup
[10.708s] [ext: omni.kit.manipulator.transform-104.7.4] startup
[10.710s] [ext: omni.kit.widget.toolbar-1.7.2] startup
[10.714s] [ext: omni.sensors.tiled-0.0.6] startup
[10.715s] [ext: omni.sensors.nv.ids-1.1.0-isaac-1] startup
[10.718s] [ext: omni.isaac.range_sensor-3.1.2] startup
[10.726s] [ext: omni.usdphysics.ui-106.1.9] startup
[10.740s] [ext: omni.physx.commands-106.1.9] startup
[10.743s] [ext: omni.kit.manipulator.tool.snap-1.5.11] startup
[10.746s] [ext: omni.isaac.sensor-12.9.1] startup
[10.791s] [ext: omni.kit.manipulator.selector-1.1.1] startup
[10.793s] [ext: omni.physx.ui-106.1.9] startup
[10.818s] [ext: omni.isaac.quadruped-2.0.1] startup
[10.824s] [ext: omni.kit.viewport.manipulator.transform-107.0.2] startup
[10.826s] [ext: omni.physx.demos-106.1.9] startup
[10.838s] [ext: omni.kit.property.physx-106.1.9] startup
[10.884s] [ext: omni.kit.widget.calendar-1.0.8] startup
[10.894s] [ext: omni.kit.manipulator.prim.core-107.0.4] startup
[10.898s] [ext: omni.fabric.commands-1.1.5] startup
[10.900s] [ext: omni.physx.vehicle-106.1.9] startup
[10.912s] [ext: omni.kit.widget.extended_searchfield-1.0.28] startup
[10.920s] [ext: omni.kit.manipulator.prim.fabric-107.0.3] startup
[10.922s] [ext: omni.kit.manipulator.prim.usd-107.0.2] startup
[10.923s] [ext: omni.kit.widget.timeline-105.0.1] startup
[10.926s] [ext: omni.kit.window.commands-0.2.6] startup
[10.927s] [ext: omni.physx.camera-106.1.9] startup
[10.935s] [ext: omni.kit.manipulator.camera-105.0.5] startup
[10.937s] [ext: omni.kit.viewport.menubar.camera-107.0.2] startup
[10.941s] [ext: omni.kit.manipulator.prim-107.0.0] startup
[10.941s] [ext: omni.kit.manipulator.selection-106.0.1] startup
[10.942s] [ext: omni.kit.window.toolbar-1.6.1] startup
[10.943s] [ext: omni.kit.stage_column.variant-1.0.13] startup
[10.945s] [ext: omni.kit.viewport.menubar.render-106.1.1] startup
[10.946s] [ext: omni.kit.viewport.menubar.settings-107.0.3] startup
[10.949s] [ext: omni.physx.cct-106.1.9] startup
[10.958s] [ext: omni.physx.graph-106.1.9] startup
[10.972s] [ext: omni.physx.supportui-106.1.9] startup
[10.985s] [ext: omni.physx.telemetry-106.1.9] startup
[10.987s] [ext: omni.graph.ui_nodes-1.26.0] startup
[10.990s] [ext: omni.kit.viewport.bundle-104.0.1] startup
[10.991s] [ext: omni.isaac.universal_robots-0.3.5] startup
[10.992s] [ext: omni.kit.window.console-0.2.13] startup
[10.997s] [ext: omni.kit.window.script_editor-1.7.6] startup
[11.001s] [ext: omni.kit.menu.create-1.0.16] startup
[11.003s] [ext: omni.graph.bundle.action-2.4.1] startup
[11.005s] [ext: omni.physx.bundle-106.1.9] startup
[11.006s] [ext: omni.rtx.window.settings-0.6.17] startup
[11.009s] [ext: omni.kit.window.status_bar-0.1.7] startup
[11.012s] [ext: omni.kit.window.title-1.1.5] startup
[11.013s] [ext: omni.replicator.isaac-1.15.2] startup
[11.028s] [ext: omni.replicator.replicator_yaml-2.0.6] startup
[11.047s] [ext: omni.rtx.settings.core-0.6.3] startup
[11.051s] [ext: omni.kit.viewport.menubar.lighting-106.0.2] startup
[11.057s] [ext: semantics.schema.editor-0.3.8] startup
[11.068s] [ext: semantics.schema.property-1.0.4] startup
[11.079s] [ext: omni.kit.viewport.rtx-104.0.1] startup
[11.079s] [ext: omni.isaac.utils-1.0.1] startup
[11.080s] [ext: omni.isaac.cloner-0.8.1] startup
[11.082s] [ext: omni.importer.urdf-1.14.1] startup
[11.113s] [ext: omni.kit.window.stats-0.1.6] startup
[11.117s] [ext: omni.isaac.sim.python-4.2.0] startup
[11.118s] Simulation App Starting
[97.990s] app ready
[98.900s] Simulation App Startup Complete
[98.907s] [ext: omni.anim.behavior.schema-106.1.0] startup
[98.912s] [ext: omni.anim.retarget.core-106.1.2] startup
[98.916s] [ext: omni.anim.asset-106.1.0] startup
[98.918s] [ext: omni.kit.quicklayout-1.0.7] startup
[98.959s] [ext: omni.anim.graph.core-106.1.2] startup
2024-11-06 11:03:50 [98,909ms] [Warning] [omni.graph.core._impl._registration.register_python_ogn] Python import process in omni.anim.graph.core failed - 'NoneType' object is not subscriptable. Aborting Python node registration
[98.970s] [ext: omni.anim.navigation.core-106.1.3] startup
[98.974s] [ext: omni.anim.navigation.navmesh.recast-106.1.4] startup
[98.975s] [ext: omni.kit.scripting-106.1.1] startup
[98.980s] [ext: omni.anim.people-0.5.0] startup
[98.990s] [ext: omni.kit.widget.zoombar-1.0.5] startup
[98.992s] [ext: omni.kit.browser.core-2.3.11] startup
[98.995s] [ext: omni.kit.browser.folder.core-1.9.13] startup
[98.997s] [ext: omni.kit.browser.sample-1.4.8] startup
[99.034s] [ext: omni.scene.visualization.core-105.4.13] startup
2024-11-06 11:03:50 [98,975ms] [Warning] [omni.stageupdate.plugin] Deprecated: direct use of IStageUpdate callbacks is deprecated. Use IStageUpdate::getStageUpdate instead.
[99.040s] [ext: omni.curve.creator-105.0.4] startup
[99.041s] [ext: omni.curve.manipulator-105.2.8] startup
[99.088s] [ext: omni.anim.navigation.ui-106.1.1] startup
[99.159s] [ext: omni.anim.navigation.bundle-106.1.0] startup
[99.165s] [ext: omni.anim.curve.core-1.1.14] startup
[99.175s] [ext: omni.anim.timeline-105.0.23] startup
[99.184s] [ext: omni.kit.widget.imageview-1.0.3] startup
[99.186s] [ext: omni.kit.window.quicksearch-2.4.4] startup
[99.189s] [ext: omni.graph.io-1.9.1] startup
2024-11-06 11:03:50 [99,128ms] [Warning] [omni.graph.io._impl.extension] omni.graph.io is deprecated. Nodes in this extension have been moved to omni.graph.nodes. Update any dependencies accordingly.
[99.190s] [ext: omni.ramp-105.1.15] startup
[99.192s] [ext: omni.genproc.core-106.1.0] startup
[99.202s] [ext: omni.anim.graph.ui-106.1.1] startup
[99.282s] [ext: omni.anim.graph.bundle-106.1.0] startup
[99.296s] [ext: omni.anim.skelJoint-106.1.2] startup
[99.302s] [ext: omni.anim.retarget.ui-106.1.1] startup
[99.343s] [ext: omni.anim.retarget.bundle-106.1.0] startup
2024-11-06 11:03:52 [100,366ms] [Warning] [omni.anim.graph.core.plugin] CharacterManager::Shutdown() called without a prior successful call to CharacterManager::Initialize().
mesh baking unsuccessful
navmesh is None