Please provide all relevant details below before submitting your post. This will help the community provide more accurate and timely assistance. After submitting, you can check the appropriate boxes. Remember, you can always edit your post later to include additional information if needed.
Isaac Sim Version
4.5.0
Operating System
Windows 10
ubuntu 24.04
Using the franka life cube environment (lift_env_cfg, joint_pos_env_cfg), when toggling visibilty or moving object, the asset fades out instead of instantly disappearing. I want to capture the scene after using cameras
how can i make it so the rendering instantly makes assets(robot,object) disappear
i tried to use set_world_pose for the object but got a attribute error.
In the end this turned out not to be an asset/visibility issue but a rendering one. The “ghosting” or fading effect was caused by the default denoiser and anti‑aliasing trying to smooth between frames. Disabling the DL denoiser and switching AA to FXAA (or turning it off) removes the problem in both Isaac Sim 4.5 and 5.0:
self.sim.render.enable_dl_denoiser = False
self.sim.render.antialiasing_mode = "FXAA" # or "None"
With this configuration, objects disappear or move without leaving a murky outline, so I’m marking this as solved.