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.
ID ID_CA_JOINT_TOOL_MODIFIER_SHIFT
Element Information
Sample Code
Example code for the id ID_CA_JOINT_TOOL_MODIFIER_SHIFT in Toolcajoint
Note that this is not the actual code from the Toolcajoint file.
This code is just an example to show you how to add a similar control to your own description.
Resource File Code (Toolcajoint.res)
LONG ID_CA_JOINT_TOOL_MODIFIER_SHIFT { CYCLE { ID_CA_JOINT_TOOL_MODIFIER_DRAW; ID_CA_JOINT_TOOL_MODIFIER_MOVE_JOINT; ID_CA_JOINT_TOOL_MODIFIER_MOVE_CHAIN; ID_CA_JOINT_TOOL_MODIFIER_SPLIT; ID_CA_JOINT_TOOL_MODIFIER_ALIGN; ID_CA_JOINT_TOOL_MODIFIER_SNAP; } }
Header File Code (Toolcajoint.h)
#ifndef TOOLCAJOINT_H__ #define TOOLCAJOINT_H__ enum { ID_CA_JOINT_TOOL_MODIFIER_SHIFT = 1000, //First ID should start at 1000 ID_CA_JOINT_TOOL_MODIFIER_DRAW = 1, ID_CA_JOINT_TOOL_MODIFIER_MOVE_JOINT = 2, ID_CA_JOINT_TOOL_MODIFIER_MOVE_CHAIN = 3, ID_CA_JOINT_TOOL_MODIFIER_SPLIT = 4, ID_CA_JOINT_TOOL_MODIFIER_ALIGN = 5, ID_CA_JOINT_TOOL_MODIFIER_SNAP = 6, }; #endif // TOOLCAJOINT_H__
String File Code (Toolcajoint.str)
// C4D-StringResource // Identifier Text STRINGTABLE { ID_CA_JOINT_TOOL_MODIFIER_SHIFT "Shift"; ID_CA_JOINT_TOOL_MODIFIER_DRAW "Draw"; ID_CA_JOINT_TOOL_MODIFIER_MOVE_JOINT "Move"; ID_CA_JOINT_TOOL_MODIFIER_MOVE_CHAIN "MoveChain"; ID_CA_JOINT_TOOL_MODIFIER_SPLIT "Split"; ID_CA_JOINT_TOOL_MODIFIER_ALIGN "DrawAligned"; ID_CA_JOINT_TOOL_MODIFIER_SNAP "DrawQuantized"; }