How to change the color of shaded wire in C++
-
I used C++ to write the C4D S26 plugin on Windows 10, I want to change the color of the shaded wire, But don't know how to do it. Thanks in advance!
-
Hi @pchg ,
Sorry for the delayed answer.
For that you can use GetViewColor() and SetViewColor() functions. You can find view color IDs definitions here: VIEWCOLOR. In your specific case you'd be interested in VIEWCOLOR_SHADEDWIRE id.
Cheers,
Ilia -
@i_mazlov Thank you for your reply