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_ALIGN_REFERENCE
Element Information
Sample Code
Example code for the id TOOL_ALIGN_REFERENCE 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_ALIGN_REFERENCE { CYCLE { TOOL_REF_AXIS; TOOL_REF_BOUNDINGBOX; } }
Header File Code (ToolScatterPlacement.h)
#ifndef TOOLSCATTERPLACEMENT_H__ #define TOOLSCATTERPLACEMENT_H__ enum { TOOL_ALIGN_REFERENCE = 1000, //First ID should start at 1000 TOOL_REF_AXIS = 1, TOOL_REF_BOUNDINGBOX = 2, }; #endif // TOOLSCATTERPLACEMENT_H__
String File Code (ToolScatterPlacement.str)
// C4D-StringResource // Identifier Text STRINGTABLE { TOOL_ALIGN_REFERENCE "ReferencePoint"; TOOL_REF_AXIS "Axis"; TOOL_REF_BOUNDINGBOX "BoundingBox"; }