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

    Help in Video Post setting

    Scheduled Pinned Locked Moved SDK Help
    3 Posts 0 Posters 274 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 11/09/2008 at 13:28, xxxxxxxx wrote:

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

      ---------
      Hi i want to do this in c++ :

      i search the forum and the sdk ... but i found nothing ...

      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 12/09/2008 at 08:49, xxxxxxxx wrote:

        have a look at the videopost sdk examples.

        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 18/09/2008 at 07:36, xxxxxxxx wrote:

          Get the PluginVideoPost from the RenderData. Get the BaseContainer of the PluginVideoPost. You can access the description elements through their IDs. Set or delete the BIT_VPDISABLED bit to enable/disable the effect.

          little example

          > \> RenderData \*rd = NULL; \> rd = doc->GetActiveRenderData(); \> if(!rd) return FALSE; \> \> PluginVideoPost \*pvp = NULL; \> pvp = rd->GetFirstVideoPost(); \> \> if(!pvp) return TRUE; \> \> pvp->SetBit(BIT_VPDISABLED); \> \> BaseContainer \*data = pvp->GetDataInstance(); \> \> data->SetBool(VP_COMICCOLOR, TRUE); \> \> pvp->Message(MSG_UPDATE); \>       \> EventAdd(); \>

          cheers,
          Matthias

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