Maxon Developers Maxon Developers
    • Documentation
      • Cinema 4D Python API
      • Cinema 4D C++ API
      • Cineware API
      • ZBrush GoZ API
      • Code Examples on Github
    • Forum
    • Downloads
    • Support
      • Support Procedures
      • Registered Developer Program
      • Plugin IDs
      • Contact Us
    • Categories
      • Overview
      • News & Information
      • Cinema 4D SDK Support
      • Cineware SDK Support
      • ZBrush 4D SDK Support
      • Bugs
      • General Talk
    • Unread
    • Recent
    • Tags
    • Users
    • Login
    1. Maxon Developers Forum
    2. rb_rodrigo
    R
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 2
    • Best 1
    • Controversial 0
    • Groups 0

    rb_rodrigo

    @rb_rodrigo

    1
    Reputation
    8
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    rb_rodrigo Unfollow Follow

    Best posts made by rb_rodrigo

    • RE: Create a Redshift Camera with Python

      I think the way to do it is creating a normal camera and then adding a Redshift Camera Tag there.

      744ac66f-462a-4c10-bf15-71d3859bd964-image.png

      posted in General Talk
      R
      rb_rodrigo

    Latest posts made by rb_rodrigo

    • RE: Create a Redshift Camera with Python

      I think the way to do it is creating a normal camera and then adding a Redshift Camera Tag there.

      744ac66f-462a-4c10-bf15-71d3859bd964-image.png

      posted in General Talk
      R
      rb_rodrigo
    • RE: Python script for Rectangle Selection with options

      Hi! always look at the python console to see where its pointing the error. if your code isnt correct it should print something

      here the fixed code.
      please compare them.

      import c4d
      from c4d import gui
      
      # Main function
      def main():
          c4d.CallCommand(12139) # Points
          c4d.CallCommand(200000084) # Rectangle Selection
          tool()[c4d.MDATA_SELECTION_TOLERANCE] = True
          tool()[c4d.MDATA_SELECTION_VISIBLE] = False
      
      # Execute main()
      if __name__=='__main__':
          main()
      
      posted in General Talk
      R
      rb_rodrigo