Hi everyone~
I got some problem when I was trying online_generation.
I add a jetbot to the shapeNet and run the online_generation.py successfully.
Then I would like to change the environment(/World/Room) to built-in Isaac Simple_Room, but I have no idea how to do it because the way of creating environment is different from offline_generation.
Here is the original Code:
#############################
create_prim(“/World/Room”, “Sphere”, attributes={“radius”: 1e3, “primvars:displayColor”: [(1.0, 1.0, 1.0)]})
create_prim(
“/World/Ground”,
“Cylinder”,
position=np.array([0.0, -0.5, 0.0]),
orientation=euler_angles_to_quat(np.array([90.0, 0.0, 0.0]), degrees=True),
attributes={“height”: 1, “radius”: 1e4, “primvars:displayColor”: [(1.0, 1.0, 1.0)]},
)
create_prim(“/World/Asset”, “Xform”)
###############################
Thanks~