Here is another great Cinema 4D Python Script for activating and deactivating wireframe display on selected objects…
Preferably use it as a shortcut…
1 2 3 4 5 6 7 8 9 10 |
import c4d from c4d import gui def main(): bd = doc.GetActiveBaseDraw() bd[c4d.BASEDRAW_DATA_WIREFRAMESELECTION] = not bd[c4d.BASEDRAW_DATA_WIREFRAMESELECTION] c4d.EventAdd() if __name__=='__main__': main() |
Leave a Reply
Want to join the discussion?Feel free to contribute!