I think the way to do it is creating a normal camera and then adding a Redshift Camera Tag there.
R
Best posts made by rb_rodrigo
-
RE: Create a Redshift Camera with Python
Latest posts made by rb_rodrigo
-
RE: Create a Redshift Camera with Python
I think the way to do it is creating a normal camera and then adding a Redshift Camera Tag there.
-
RE: Python script for Rectangle Selection with options
Hi! always look at the python console to see where its pointing the error. if your code isnt correct it should print something
here the fixed code.
please compare them.import c4d from c4d import gui # Main function def main(): c4d.CallCommand(12139) # Points c4d.CallCommand(200000084) # Rectangle Selection tool()[c4d.MDATA_SELECTION_TOLERANCE] = True tool()[c4d.MDATA_SELECTION_VISIBLE] = False # Execute main() if __name__=='__main__': main()