On 12/06/2017 at 15:04, xxxxxxxx wrote:
Hi people!
One question: Can I set a default color value to a gui.ColorDialog() ? Or for this I need to recreate an entire Color Dialog?
I only want to change the black value to another color. I have the code with this basic structure:
import c4d
from c4d import gui
def geo_color() :
#color dialog
cdlg = c4d.gui.ColorDialog(1)
print cdlg
if __name__=='__main__':
geo_color()
Thanks!!