and when I try to change the material of test1 in the callback of
def update_scene(rt: TkOptiX) -> None:
rt.set_data('test1', mat='flat') # DOES NOT WORK
# rt.update_data('test1', mat='flat') # DOES NOT WORK EITHER
rt.set_data('test2', mat='flat') # DOES WORK
rt = TkOptiX(on_rt_completed=update_scene)
I get an
ERROR] (Dummy-21 ) Geometry update failed.**
for changing test1. Changing test2 works without any issue...
What might be the problem here?
In v0.17 TkOptiX, with RTX 3090, driver 536.23 when I want to change the material of a loaded .OBJ file
and when I try to change the material of
test1
in the callback ofI get an
for changing
test1
. Changingtest2
works without any issue... What might be the problem here?