Hi.
I would like to turn ON and OFF advanced rendering features such as ray tracing to evaluate ray tracing effect for learning in Omniverse Isaac Sim.
Is there an API provided to control these features from Python?
Hi.
I would like to turn ON and OFF advanced rendering features such as ray tracing to evaluate ray tracing effect for learning in Omniverse Isaac Sim.
Is there an API provided to control these features from Python?
You can change rendering features by following code.
import carb
from omni.isaac.core.utils.carb import set_carb_setting
# settings interface
carb_settings = carb.settings.get_settings()
# set values
set_carb_setting(carb_settings, "/rtx/ecoMode/enabled", True)
The setting name and value are shown below document.
https://docs.omniverse.nvidia.com/materials-and-rendering/latest/rtx-renderer_rt.html
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.