Here you will find documentation on all the descriptions that Cinema 4D currently has. You can list them Alphabetically, by Type or Plugin . The sample Python and C++ code is automatically generated and in some cases may not be 100% correct. If something doesn't work then please refer to the official Cinema 4D SDK documentation for more information.

Element Information

Sample Code

Example code for the id MGSPLINEWRAPDEFORMER_AXIS in Omograph_splinewrap

Note that this is not the actual code from the Omograph_splinewrap file.

This code is just an example to show you how to add a similar control to your own description.

Resource File Code (Omograph_splinewrap.res)


LONG  MGSPLINEWRAPDEFORMER_AXIS
{
                        
    CYCLE 
    {         MGSPLINEWRAPDEFORMER_AXIS_XP; 
        MGSPLINEWRAPDEFORMER_AXIS_XN; 
        MGSPLINEWRAPDEFORMER_AXIS_YP; 
        MGSPLINEWRAPDEFORMER_AXIS_YN; 
        MGSPLINEWRAPDEFORMER_AXIS_ZP; 
        MGSPLINEWRAPDEFORMER_AXIS_ZN; 
    }
}
            

Header File Code (Omograph_splinewrap.h)

#ifndef OMOGRAPH_SPLINEWRAP_H__
#define OMOGRAPH_SPLINEWRAP_H__
enum
{
  MGSPLINEWRAPDEFORMER_AXIS = 1000,  //First ID should start at 1000
    MGSPLINEWRAPDEFORMER_AXIS_XP = 1,
    MGSPLINEWRAPDEFORMER_AXIS_XN = 2,
    MGSPLINEWRAPDEFORMER_AXIS_YP = 3,
    MGSPLINEWRAPDEFORMER_AXIS_YN = 4,
    MGSPLINEWRAPDEFORMER_AXIS_ZP = 5,
    MGSPLINEWRAPDEFORMER_AXIS_ZN = 6,
};
#endif	// OMOGRAPH_SPLINEWRAP_H__

String File Code (Omograph_splinewrap.str)

// C4D-StringResource
// Identifier	Text
STRINGTABLE
{
  MGSPLINEWRAPDEFORMER_AXIS    "Axis";
    MGSPLINEWRAPDEFORMER_AXIS_XP    "+X";
    MGSPLINEWRAPDEFORMER_AXIS_XN    "-X";
    MGSPLINEWRAPDEFORMER_AXIS_YP    "+Y";
    MGSPLINEWRAPDEFORMER_AXIS_YN    "-Y";
    MGSPLINEWRAPDEFORMER_AXIS_ZP    "+Z";
    MGSPLINEWRAPDEFORMER_AXIS_ZN    "-Z";
}