import omni.replicator.core as rep
with rep.new_layer():
camera = rep.create.camera(position=(0, 0, 1000))
render_product = rep.create.render_product(camera, (1024, 1024))
torus = rep.create.torus(semantics=[('class', 'torus')] , position=(0, -200 , 100))
sphere = rep.create.sphere(semantics=[('class', 'sphere')], position=(0, 100, 100))
cube = rep.create.cube(semantics=[('class', 'cube')], position=(100, -200 , 100) )
with rep.trigger.on_frame(num_frames=10):
with rep.create.group([torus, sphere, cube]):
rep.modify.pose(
position=rep.distribution.uniform((-100, -100, -100), (200, 200, 200)),
scale=rep.distribution.uniform(0.1, 2))
# Initialize and attach writer
writer = rep.WriterRegistry.get("BasicWriter")
writer.initialize( output_dir="/home/mona/Desktop/Isaac_Sim_Dummy_Out", rgb=True, bounding_box_2d_tight=True)
writer.attach([render_product])
rep.orchestrator.preview()
I used this code from
However, it keeps showing this warning “translate is overriden in a stronger layer” warning and no output is produced.
Could you please guide why it’s not working in Isaac Sim Script Editor?
[7.010s] [ext: omni.isaac.sim.base-2022.2.0] startup
[7.010s] [ext: omni.isaac.sim-2022.2.0] startup
2023-02-27 14:22:39 [7,115ms] [Warning] [omni.client.plugin] HTTP Client: provider_http: CC-493: Request through cache failed. Retrying without cache for http://omniverse-content-production.s3-us-west-2.amazonaws.com/.cloudfront.toml
2023-02-27 14:22:39 [7,115ms] [Warning] [omni.client.plugin] HTTP Client: omniclient: CC-873: Bypassing cache until the application is restarted
[7.163s] app ready
2023-02-27 14:22:39 [7,346ms] [Warning] [omni.client.plugin] HTTP Client: provider_http: CC-493: Request through cache failed. Retrying without cache for http://omniverse-content-production.s3-us-west-2.amazonaws.com/Assets/Isaac/2022.2.0/Isaac/
[9.564s] RTX ready
[9.564s] RTX ready
[9.571s] Isaac Sim App is loaded.
2023-02-27 14:24:09 [97,585ms] [Warning] [carb.flatcache.plugin] UsdRelationship /Replicator/SDGPipeline/OgnGroup_08.inputs:prims has multiple targets, which is not supported
2023-02-27 14:24:10 [97,893ms] [Warning] [omni.kit.widget.layers.layer_model] /Replicator/Camera_Xform.xformOp:translate is overridden in a stronger layer (Root Layer).
2023-02-27 14:24:10 [97,893ms] [Warning] [omni.kit.widget.layers.layer_model] /Replicator/Torus_Xform.xformOp:translate is overridden in a stronger layer (Root Layer).
2023-02-27 14:24:10 [97,893ms] [Warning] [omni.kit.widget.layers.layer_model] /Replicator/Sphere_Xform.xformOp:translate is overridden in a stronger layer (Root Layer).
2023-02-27 14:24:10 [97,893ms] [Warning] [omni.kit.widget.layers.layer_model] /Replicator/Cube_Xform.xformOp:translate is overridden in a stronger layer (Root Layer).