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 TOOL_MODE_ALIGN_TO
Element Information
Sample Code
Example code for the id TOOL_MODE_ALIGN_TO in ToolScatterPlacement
Note that this is not the actual code from the ToolScatterPlacement file.
This code is just an example to show you how to add a similar control to your own description.
Resource File Code (ToolScatterPlacement.res)
LONG TOOL_MODE_ALIGN_TO { SCALE_H ; ANIM OFF; CUSTOMGUI QUICKTABRADIO; CYCLE { TOOL_MODE_ALIGN_STROKE; TOOL_MODE_ALIGN_OBJECT; } }
Header File Code (ToolScatterPlacement.h)
#ifndef TOOLSCATTERPLACEMENT_H__ #define TOOLSCATTERPLACEMENT_H__ enum { TOOL_MODE_ALIGN_TO = 1000, //First ID should start at 1000 TOOL_MODE_ALIGN_STROKE = 1, TOOL_MODE_ALIGN_OBJECT = 2, }; #endif // TOOLSCATTERPLACEMENT_H__
String File Code (ToolScatterPlacement.str)
// C4D-StringResource // Identifier Text STRINGTABLE { TOOL_MODE_ALIGN_TO "AlignTo"; TOOL_MODE_ALIGN_STROKE "Stroke"; TOOL_MODE_ALIGN_OBJECT "Object"; }