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 GV_SPY_INPUT
Element Information
Sample Code
Example code for the id GV_SPY_INPUT in GVspy
Note that this is not the actual code from the GVspy file.
This code is just an example to show you how to add a similar control to your own description.
Resource File Code (GVspy.res)
DYNAMIC GV_SPY_INPUT { INPORT ; STATICPORT ; CREATEPORT ; }
Header File Code (GVspy.h)
#ifndef GVSPY_H__ #define GVSPY_H__ enum { GV_SPY_INPUT = 1000, //First ID should start at 1000 }; #endif // GVSPY_H__
String File Code (GVspy.str)
// C4D-StringResource // Identifier Text STRINGTABLE { GV_SPY_INPUT "Input"; }