I noticed that the default carbon color for loaded objects is set to cycle
from green to pink and then repeat to differentiate models. I have a lot of
models being loading and deleted within one session, and it would be very
useful to be able to reset that cycle, So that the first model after a
res
Hi Wilson,
I don't know how to reset the color scheme, but maybe something along the
following lines can help out:
# set the colors (change to your liking):
colors = ("green","cyan","magenta","yellow")
# create a color iterator:
python
def colit():
i = 0
while True:
yield colors