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_OBJECT_SOURCE
Element Information
Sample Code
Example code for the id TOOL_MODE_OBJECT_SOURCE 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_OBJECT_SOURCE { SCALE_H ; ANIM OFF; CUSTOMGUI QUICKTABRADIO; CYCLE { TOOL_MODE_SOURCE_SELECTION; TOOL_MODE_SOURCE_PALETTE; } }
Header File Code (ToolScatterPlacement.h)
#ifndef TOOLSCATTERPLACEMENT_H__ #define TOOLSCATTERPLACEMENT_H__ enum { TOOL_MODE_OBJECT_SOURCE = 1000, //First ID should start at 1000 TOOL_MODE_SOURCE_SELECTION = 1, TOOL_MODE_SOURCE_PALETTE = 2, }; #endif // TOOLSCATTERPLACEMENT_H__
String File Code (ToolScatterPlacement.str)
// C4D-StringResource // Identifier Text STRINGTABLE { TOOL_MODE_OBJECT_SOURCE "Source"; TOOL_MODE_SOURCE_SELECTION "Selection"; TOOL_MODE_SOURCE_PALETTE "ObjectPalette"; }