Files
Mujoco_WASM/python/mujoco/usd/demo.py
T
2024-04-02 16:39:04 -04:00

20 lines
398 B
Python

import mujoco
from mujoco.usd import exporter
if __name__ == "__main__":
# load a model to mujoco
m = mujoco.MjModel.from_xml_path("/Users/abhishek/Documents/research/mujoco/model/humanoid/humanoid.xml")
d = mujoco.MjData(m)
# create an instance of the USDExporter
exp = exporter.USDExporter(model=m)
mujoco.mj_step(m, d)
exp.update_scene(d)
exp.save_scene(filetype="usda")