So it looks like register_graphics_instance expects 7 input arguments instead of 6. The last input argument should be a bool. I searched online for what the last argument should be, True or False, but I couldn't find it. I entered either one of them. The example ran successfully, so I thought I would give you guys a head up. I'd love to know the correct value though, True or False.
BTW, register_graphics_instance is used in probably all of the python examples.
I downloaded and installed TDS by doing
pip install -e .
in the root directory. I thinksetup.py
ran successfully.Then I tried to run
render_obj_gl.py
in thepython/examples
directory. It gave me the following error:So it looks like
register_graphics_instance
expects 7 input arguments instead of 6. The last input argument should be abool
. I searched online for what the last argument should be,True
orFalse
, but I couldn't find it. I entered either one of them. The example ran successfully, so I thought I would give you guys a head up. I'd love to know the correct value though,True
orFalse
.BTW,
register_graphics_instance
is used in probably all of the python examples.Thanks!