Removing shadow from franka robot arm #1704
-
Beta Was this translation helpful? Give feedback.
Answered by
duburcqa
Sep 10, 2025
Replies: 2 comments 2 replies
-
I don't see any shadow, only non-uniform lighting, which is different. |
Beta Was this translation helpful? Give feedback.
1 reply
-
You can just do this: scene = gs.Scene(
sim_options=gs.options.SimOptions(
dt=args.dt,
substeps=args.substeps,
),
mpm_options=gs.options.MPMOptions(
lower_bound=lower_bound,
upper_bound=upper_bound
),
vis_options=gs.options.VisOptions(
visualize_mpm_boundary=args.visualize_mpm_boundary,
show_world_frame=args.show_world_frame,
ambient_light=(0.8, 0.8, 0.8), # Increase intensity of ambient light
lights=[], # Disable default directional light.
background_color=(1.0, 1.0, 1.0) if args.white_background else (0.0, 0.0, 0.0),
),
show_viewer=False,
show_FPS=False
) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
AndreaCastiella
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can just do this: