Maxon Developers Maxon Developers
    • Documentation
      • Cinema 4D Python API
      • Cinema 4D C++ API
      • Cineware API
      • ZBrush Python 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
    • Recent
    • Tags
    • Users
    • Login

    parameters for posteffects

    Scheduled Pinned Locked Moved SDK Help
    4 Posts 0 Posters 360 Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • H Offline
      Helper
      last edited by

      THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

      On 15/09/2008 at 13:01, xxxxxxxx wrote:

      User Information:
      Cinema 4D Version:   10.1 
      Platform:   Windows  ;   
      Language(s) :     C++  ;

      ---------
      how can i create input fields for post effects?

      1 Reply Last reply Reply Quote 0
      • H Offline
        Helper
        last edited by

        THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

        On 16/09/2008 at 03:59, xxxxxxxx wrote:

        You just create description files like for every other BaseData derived plugin. Please check the description files of the videopost examples in the SDK examples.

        cheers,
        Matthias

        1 Reply Last reply Reply Quote 0
        • H Offline
          Helper
          last edited by

          THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

          On 16/09/2008 at 12:08, xxxxxxxx wrote:

          yes, in the meantime i got it working. but i am facing a totally strange problem now. the following thing is driving me insane:

          > `

            
          \>            //REAL s_stufen { MIN 0; MAX 10; STEP 1; }  
          \>            REAL s_typeOfFx { NAME T_s; MIN 0; MAX 2; STEP 1; }  
          \>  
          

          `

          if i uncomment the first line i get an error within cinema. if i comment it out , everything works.

          can anyone gring light into this issue??

          1 Reply Last reply Reply Quote 0
          • H Offline
            Helper
            last edited by

            THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

            On 17/09/2008 at 00:07, xxxxxxxx wrote:

            I don't know but maybe it's because you use the NAME flag in your second description element. NAME should not be used for description elements. It is the name of the whole description. See example below to locate the NAME tag.

            > \> CONTAINER VPcolorize \> { \>      NAME VPcolorize; \>      INCLUDE VPbase; \> \>      GROUP ID_VIDEOPOSTPROPERTIES \>      { \>           REAL VP_COLORIZE_DELTA_R     { UNIT PERCENT; MIN -100.0; MAX 100.0; } \>           REAL VP_COLORIZE_DELTA_G     { UNIT PERCENT; MIN -100.0; MAX 100.0; } \>           REAL VP_COLORIZE_DELTA_B     { UNIT PERCENT; MIN -100.0; MAX 100.0; } \>           LONG VP_COLORIZE_MODE               { CYCLE { VP_COLORIZE_MODE_COMPLETE; VP_COLORIZE_MODE_ALPHA; VP_COLORIZE_MODE_OBJECTBUFFER; } } \>           LONG VP_COLORIZE_OBJECTID { PARENTID VP_COLORIZE_MODE; MIN 1; MAX 1000; } \>           LENSGLOW VP_COLORIZE_LENSGLOW { } \>      } \> } \>

            cheers,
            Matthias

            1 Reply Last reply Reply Quote 0
            • First post
              Last post