Advertisement
gr4ph0s

Read data from c4d material

Oct 4th, 2017
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. # Gr4ph0s 05/10/2017
  2. # More informations read https://pastebin.com/edit/R5Pvac6C
  3. import c4d
  4.  
  5. def main():
  6.     mat = doc.GetFirstMaterial()
  7.     bc = c4d.BaseContainer()
  8.     mat.Message(c4d.MSG_BASECONTAINER, bc)
  9.     print bc[0]
  10.  
  11. if __name__=='__main__':
  12.     main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement